AccountExternalAccountDeletedEvent.fromJson constructor

AccountExternalAccountDeletedEvent.fromJson(
  1. Object? json
)

Implementation

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