listFromJson static method
Implementation
static List<IntrospectionResponseExt?>? listFromJson(List<dynamic> json, {bool? emptyIsNull, bool? growable,}) =>
json == null || json.isEmpty
? true == emptyIsNull ? null : <IntrospectionResponseExt>[]
: json.map((v) => IntrospectionResponseExt.fromJson(v)).toList(growable: true == growable);