mapValue property

Map? get mapValue

获取可选Map, 类型匹配才有值

Implementation

Map<dynamic, dynamic>? get mapValue => _value is Map ? _value as Map : null;