orEmpty method

Map<K, V> orEmpty()

Returns the Map if its not null, or the empty Map otherwise.

Implementation

Map<K, V> orEmpty() => this ?? <K, V>{};