isNumeric property

bool isNumeric

Check if string is numeric

Implementation

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