mapObjectValue property

Map<String, dynamic> mapObjectValue

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>{};