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