mapObject property

Map<String, dynamic>? mapObject

Returns a Map or null if rawValue is not a Map Leaves map values untouched

Implementation

Map<String, dynamic>? get mapObject => (_rawValue is Map) ? _rawValue as Map<String, dynamic> : null;