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