mapObjectValue property Null safety
Returns a Map of T
or empty Map if rawValue is not a Map of T
Leaves map values untouched
Implementation
Map<String, dynamic> get mapObjectValue =>
(_rawValue is Map) ? _rawValue as Map<String, dynamic> : <String, dynamic>{};