CustomerTaxIdDeletedEvent.fromJson constructor

CustomerTaxIdDeletedEvent.fromJson(
  1. Object? json
)

Implementation

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