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