isNumeric property

bool get isNumeric

Checks if string is numeric

Implementation

bool get isNumeric => num.tryParse(this) != null;