toNullableMap static method

dynamic toNullableMap(
  1. dynamic value
)

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

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

Implementation

static dynamic toNullableMap(value) {
  return _valueToMap(value);
}