PaymentListAllResponse constructor

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

Implementation

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