Converts the String to an Number.
Number
Example:
print("123".toNum()); // 123
num? toNum() => isNotEmptyOrNull ? num.tryParse(this!) : null;