listFromJson static method

List<UserRegistrationVerifyRequest?>? listFromJson(
  1. List json, {
  2. bool? emptyIsNull,
  3. bool? growable,
})

Implementation

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