IssuingAuthorizationAuthenticationExemption.fromJson constructor

IssuingAuthorizationAuthenticationExemption.fromJson(
  1. Object? json
)

Implementation

factory IssuingAuthorizationAuthenticationExemption.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return IssuingAuthorizationAuthenticationExemption(
    claimedBy: IssuingAuthorizationAuthenticationExemptionClaimedBy.fromJson(
        map['claimed_by']),
    type:
        IssuingAuthorizationAuthenticationExemptionType.fromJson(map['type']),
  );
}