toNullableFloat static method

double? toNullableFloat(
  1. dynamic value
)

Converts value into float or returns null when conversion is not possible.

  • value the value to convert. Returns float value or null when conversion is not supported.

See DoubleConverter.toNullableDouble

Implementation

static double? toNullableFloat(value) {
  return DoubleConverter.toNullableDouble(value);
}