CustomerSourceUpdatedEvent.fromJson constructor

CustomerSourceUpdatedEvent.fromJson(
  1. Object? json
)

Implementation

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