CustomerSubscriptionResumedEvent.fromJson constructor

CustomerSubscriptionResumedEvent.fromJson(
  1. Object? json
)

Implementation

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