createWithCulture static method
OffsetTimePattern
createWithCulture(
- String patternText,
- Culture culture,
- OffsetTime templateValue
Creates a pattern for the given pattern text, culture, and template value.
todo: we need one 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 OffsetTimePattern createWithCulture(String patternText, Culture culture, OffsetTime templateValue) =>
_create(patternText, TimeMachineFormatInfo.getFormatInfo(culture), templateValue);