validate is string value can be parsed to numeric or not
bool validateIsStringNumber({ required String value, }) { if (num.tryParse(value) == null) { return false; } return true; }