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