tryToDouble method
Converts to double without throwing, mirroring
Convert.tryToDouble.
Implementation
double? tryToDouble({
dynamic mapKey,
int? listIndex,
String? format,
String? locale,
double? defaultValue,
DynamicConverter<double>? converter,
}) => ConvertObjectImpl.tryToDouble(
_value,
mapKey: mapKey,
listIndex: listIndex,
format: format,
locale: locale,
defaultValue: defaultValue ?? _defaultValue as double?,
converter: converter,
);