toParseNum method

num? toParseNum()

Implementation

num? toParseNum() {
  String? value = this;
  return num.tryParse(value.toString());
}