list property

List<Json>? list

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

Implementation

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