CustomerSourceDeletedEvent.fromJson constructor

CustomerSourceDeletedEvent.fromJson(
  1. Object? json
)

Implementation

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