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