MaterialLocalizationDe constructor Null safety
- {String localeName: 'de',
- required DateFormat fullYearFormat,
- required DateFormat compactDateFormat,
- required DateFormat shortDateFormat,
- required DateFormat mediumDateFormat,
- required DateFormat longDateFormat,
- required DateFormat yearMonthFormat,
- required DateFormat shortMonthDayFormat,
- required NumberFormat decimalFormat,
- required NumberFormat twoDigitZeroPaddedFormat}
Create an instance of the translation bundle for German.
For details on the meaning of the arguments, see GlobalMaterialLocalizations.
Implementation
const MaterialLocalizationDe({
String localeName = 'de',
required intl.DateFormat fullYearFormat,
required intl.DateFormat compactDateFormat,
required intl.DateFormat shortDateFormat,
required intl.DateFormat mediumDateFormat,
required intl.DateFormat longDateFormat,
required intl.DateFormat yearMonthFormat,
required intl.DateFormat shortMonthDayFormat,
required intl.NumberFormat decimalFormat,
required intl.NumberFormat twoDigitZeroPaddedFormat,
}) : super(
localeName: localeName,
fullYearFormat: fullYearFormat,
compactDateFormat: compactDateFormat,
shortDateFormat: shortDateFormat,
mediumDateFormat: mediumDateFormat,
longDateFormat: longDateFormat,
yearMonthFormat: yearMonthFormat,
shortMonthDayFormat: shortMonthDayFormat,
decimalFormat: decimalFormat,
twoDigitZeroPaddedFormat: twoDigitZeroPaddedFormat,
);