createMapOfNullableT method
Creates an empty map with keys of type String and nullable values of type T.
This method returns an empty map with keys of type String and nullable values of type T.
@returns An empty map with String keys and nullable values of type T.
Implementation
Map<String, T?> createMapOfNullableT() => {};