RequestVerifyPurchaseWithIapkitResult.fromJson constructor

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

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