EntitlementIOS.fromJson constructor

EntitlementIOS.fromJson(
  1. Map<String, dynamic> json
)

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,
  );
}