createWithCulture static method
Creates a pattern for the given pattern text, culture, and template value.
todo: we don't have this yet See the user guide for the available pattern text options.
patternText
: Pattern text to create the pattern forculture
: The culture to use in the patterntemplateValue
: Template value to use for unspecified fields. Defaults to a value of 2000-01-01.
Returns: A pattern for parsing and formatting local dates.
- InvalidPatternError: The pattern text was invalid.
Implementation
static LocalDatePattern createWithCulture(String patternText, Culture culture, [LocalDate? templateValue]) =>
_create(patternText, TimeMachineFormatInfo.getFormatInfo(culture), templateValue ?? LocalDatePatterns.defaultTemplateValue);