ExternalPurchaseNoticeResultIOS.fromJson constructor
Implementation
factory ExternalPurchaseNoticeResultIOS.fromJson(Map<String, dynamic> json) {
return ExternalPurchaseNoticeResultIOS(
error: json['error'] as String?,
result: ExternalPurchaseNoticeAction.fromJson(json['result'] as String),
);
}