This works:
(map ?? const {})[key] ?? otherValue;
Because the key
will fallback to accessing an empty Map
, which will always return null
.
This works:
(map ?? const {})[key] ?? otherValue;
Because the key
will fallback to accessing an empty Map
, which will always return null
.