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