formatYear method
- int year,
- MaterialLocalizations localizations
Full unabbreviated year format, e.g. 2017 rather than 17.
Implementation
String formatYear(int year, MaterialLocalizations localizations) {
return localizations.formatYear(DateTime(year));
}