normalizingIso property

PeriodPattern normalizingIso
final

A 'normalizing' pattern which abides by the ISO-8601 duration format as far as possible. Weeks are added to the number of days (after multiplying by 7). Time units are normalized (extending into days where necessary), and fractions of seconds are represented within the seconds part. Unlike ISO-8601, which pattern allows for negative values within a period.

todo: investigate this: Note that normalizing the period when formatting will cause an OverflowError if the period contains more than System.Int64.MaxValue ticks when the combined weeks/days/time portions are considered. Such a period could never be useful anyway, however.

Implementation

static final PeriodPattern normalizingIso = PeriodPattern._(_NormalizingIsoPatternImpl());