AccountExternalAccountUpdatedEvent.fromJson constructor

AccountExternalAccountUpdatedEvent.fromJson(
  1. Object? json
)

Implementation

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