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