getLocalizedDateLabels static method
Implementation
static Map<String, String> getLocalizedDateLabels(String locale) {
List<String> labels = BirthPickerLocalization.getDateLabels(locale);
return {'year': labels[0], 'month': labels[1], 'day': labels[2]};
}