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