ExternalPurchaseCustomLinkNoticeResultIOS.fromJson constructor

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

Implementation

factory ExternalPurchaseCustomLinkNoticeResultIOS.fromJson(Map<String, dynamic> json) {
  return ExternalPurchaseCustomLinkNoticeResultIOS(
    continued: json['continued'] as bool,
    error: json['error'] as String?,
  );
}