regexNumbersOnly property

RegExp regexNumbersOnly
getter/setter pair

Regular expression pattern for matching strings containing only digits (0-9).

Implementation

static RegExp regexNumbersOnly = RegExp(r'^[0-9]+$');