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