parse library
Utilities to parse objects from Strings.
Functions
-
tryParseBool(
String? value) → bool? - Tries to parse a bool from a String.
-
tryParseDouble(
String? value) → double? -
A wrapper around double.tryParse that accepts a
null
argument. -
tryParseDuration(
String? value) → Duration? - Tries to parse a Duration from a String.
-
tryParseInt(
String? value, {int? radix}) → int? -
A wrapper around int.tryParse that accepts a
null
argument.