regexNumbersOnly property
Regular expression pattern for matching strings containing only digits (0-9).
Implementation
static RegExp regexNumbersOnly = RegExp(r'^[0-9]+$');
Regular expression pattern for matching strings containing only digits (0-9).
static RegExp regexNumbersOnly = RegExp(r'^[0-9]+$');