mapListFromJson static method

Map<String, List<SignInVerifyRequest?>?> mapListFromJson(
  1. Map<String, dynamic> json, {
  2. bool? emptyIsNull,
  3. bool? growable,
})

Implementation

static Map<String, List<SignInVerifyRequest?>?> mapListFromJson(Map<String, dynamic> json, {bool? emptyIsNull, bool? growable,}) {
  final Map<String, List<SignInVerifyRequest?>?> map = <String, List<SignInVerifyRequest>?>{};
  if (json != null && json.isNotEmpty) {
    json.forEach((String key, dynamic v) {
      map[key] = SignInVerifyRequest.listFromJson(v, emptyIsNull: emptyIsNull, growable: growable);
    });
  }
  return map;
}