Refund.fromJson constructor

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

Implementation

factory Refund.fromJson(Map<String, dynamic> json) => Refund(
      id: json["id"],
      refund: json["refund"],
      total: json["total"],
    );