iso8601Duration property
final
Implementation
static final RegExp iso8601Duration = RegExp(
r'^P'
r'((?<years>\d+)Y)?'
r'((?<months>\d+)M)?'
r'((?<days>\d+)D)?'
r'(T'
r'((?<hours>\d+)H)?'
r'((?<minutes>\d+)M)?'
r'((?<seconds>\d+)S)?)?$',
);