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