EntitlementIOS.fromJson constructor
Implementation
factory EntitlementIOS.fromJson(Map<String, dynamic> json) {
return EntitlementIOS(
jsonRepresentation: json['jsonRepresentation'] as String,
sku: json['sku'] as String,
transactionId: json['transactionId'] as String,
);
}