doubleTyrParse property

bool doubleTyrParse

Implementation

bool get doubleTyrParse {
  if (this == null || this!.isEmpty) return false;
  if (double.tryParse(this!) == null) return false;
  return true;
}