listValue property

List? get listValue

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

Implementation

List<dynamic>? get listValue => _value is List ? _value as List : null;