ExternalPurchaseNoticeResultIOS.fromJson constructor

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

Implementation

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