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