IssuingAuthorizationRequestEvent.fromJson constructor
IssuingAuthorizationRequestEvent.fromJson(
- Object? json
Implementation
factory IssuingAuthorizationRequestEvent.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return IssuingAuthorizationRequestEvent(
object: IssuingAuthorization.fromJson(map['object']));
}