PaymentListResponse constructor

const PaymentListResponse({
  1. required bool hasMore,
  2. required List<PaymentListAllResponse> data,
})

Implementation

const PaymentListResponse({
  required this.hasMore,
  required this.data,
});