isNumeric property

bool isNumeric

isNumeric extension this extension will check if passed string is numeric or not

Implementation

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