RequestVerifyPurchaseWithIapkitResult.fromJson constructor
Implementation
factory RequestVerifyPurchaseWithIapkitResult.fromJson(Map<String, dynamic> json) {
return RequestVerifyPurchaseWithIapkitResult(
isValid: json['isValid'] as bool,
state: IapkitPurchaseState.fromJson(json['state'] as String),
store: IapStore.fromJson(json['store'] as String),
);
}