reNumbers constant Null safety

String const reNumbers

Matches all numbers, including those delimited with periods and or commas.

Implementation

static const reNumbers = r'(\d|((?<=\d)[,.]{1}(?=\d)))+';