RefundResponse.fromJson constructor

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

Implementation

factory RefundResponse.fromJson(Map<String, dynamic> json) => RefundResponse(
      status: json['status'] as String,
      detail: json['detail'] as String,
    );