RequestVerifyPurchaseWithIapkitGoogleProps.fromJson constructor

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

Implementation

factory RequestVerifyPurchaseWithIapkitGoogleProps.fromJson(Map<String, dynamic> json) {
  return RequestVerifyPurchaseWithIapkitGoogleProps(
    purchaseToken: json['purchaseToken'] as String,
  );
}