CustomerTaxIdUpdatedEvent.fromJson constructor

CustomerTaxIdUpdatedEvent.fromJson(
  1. Object? json
)

Implementation

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