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