toNullableValueMap<T extends Object> method

  1. @override
Map<String, T?> toNullableValueMap<T extends Object>()
override

Returns map items (key-value pairs) with values represented as T?.

Throws FormatException if a value cannot be represented as T?.

Implementation

@override
Map<String, T?> toNullableValueMap<T extends Object>() =>
    toNullableValueMapOf<String, T>(map, isExposed: isExposed);