createWithCulture static method

LocalDateTimePattern createWithCulture(
  1. String patternText,
  2. Culture culture, [
  3. LocalDateTime? 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 for
  • culture: The culture to use in the pattern
  • templateValue: Template value to use for unspecified fields. Defaults to a template value of midnight on 2000-01-01.

Returns: A pattern for parsing and formatting local date/times.

Implementation

static LocalDateTimePattern createWithCulture(String patternText, Culture culture, [LocalDateTime? templateValue]) =>
    _create(patternText, TimeMachineFormatInfo.getFormatInfo(culture), templateValue ?? LocalDateTimePatterns.defaultTemplateValue);