NFTPayment.fromJson constructor

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

Implementation

factory NFTPayment.fromJson(Map<String, dynamic> json) {
  return NFTPayment(
      requiredCollection: json["requiredCollection"],
      destination: json["destination"]);
}