listFromJson static method
Implementation
static List<DeletePredicateRequest>? listFromJson(
dynamic json, {
bool? emptyIsNull,
bool? growable,
}) =>
json is List && json.isNotEmpty
? json
.map(DeletePredicateRequest.fromJson)
.toList(growable: true == growable)
: true == emptyIsNull
? null
: <DeletePredicateRequest>[];