createWithCurrentCulture static method

OffsetDateTimePattern createWithCurrentCulture(
  1. String patternText
)

Creates a pattern for the given pattern text in the current culture, using the default template value of midnight January 1st 2000 at an offset of 0.

todo: we need one See the user guide for the available pattern text options. Note that the current culture is captured at the time this method is called - it is not captured at the point of parsing or formatting values.

  • patternText: Pattern text to create the pattern for

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

Implementation

static OffsetDateTimePattern createWithCurrentCulture(String patternText) =>
    _create(patternText, TimeMachineFormatInfo.currentInfo, OffsetDateTimePatterns.defaultTemplateValue);