isNumeric property

bool get isNumeric

Check if string is numeric

Implementation

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