temperature property
Implementation
static final RegExp temperature = RegExp(r'T(?<type>N|X)'
r'(?<sign>M)?'
r'(?<temp>\d{2})/'
r'(?<day>0[1-9]|[12][0-9]|3[01])'
r'(?<hour>[0-1]\d|2[0-3])Z');
static final RegExp temperature = RegExp(r'T(?<type>N|X)'
r'(?<sign>M)?'
r'(?<temp>\d{2})/'
r'(?<day>0[1-9]|[12][0-9]|3[01])'
r'(?<hour>[0-1]\d|2[0-3])Z');