createWithCulture static method
Creates a pattern for the given pattern text, culture, and template value or LocalTime.midnight.
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
Returns: A pattern for parsing and formatting local times.
- InvalidPatternError: The pattern text was invalid.
Implementation
static LocalTimePattern createWithCulture(String patternText, Culture culture, [LocalTime? templateValue]) =>
_create(patternText, TimeMachineFormatInfo.getFormatInfo(culture), templateValue ?? LocalTime.midnight);