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