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
.
Implementation
Map<String, T?> createMapOfNullableT() => {};