ExternalPurchaseLinkResultIOS.fromJson constructor

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

Implementation

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