toNum property

num? toNum

Implementation

num? get toNum {
  return this.number ?? (string == null ? null : num.tryParse(string!));
}