RequestVerifyPurchaseWithIapkitAmazonProps.fromJson constructor

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

Implementation

factory RequestVerifyPurchaseWithIapkitAmazonProps.fromJson(Map<String, dynamic> json) {
  return RequestVerifyPurchaseWithIapkitAmazonProps(
    receiptId: json['receiptId'] as String,
    sandbox: json['sandbox'] as bool?,
    userId: json['userId'] as String?,
  );
}