IssuingAuthorizationRequestEvent.fromJson constructor

IssuingAuthorizationRequestEvent.fromJson(
  1. Object? json
)

Implementation

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