listValue property

List<Json> listValue

Returns a List or an empty List if rawValue is not a List Each element of the list is wrapped in a Json instance

Implementation

List<Json> get listValue =>
    (_rawValue is List) ? (_rawValue as List).map<Json>((dynamic e) => Json.fromDynamic(e)).toList() : [];