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