isNumeric property
bool
get
isNumeric
Checks if string is numeric
Implementation
bool get isNumeric => num.tryParse(this) != null;
Checks if string is numeric
bool get isNumeric => num.tryParse(this) != null;