PaginatedBillingPaymentAttemptResponse constructor

PaginatedBillingPaymentAttemptResponse({
  1. List<BillingPaymentAttempt> data = const [],
  2. required int totalCount,
})

Returns a new PaginatedBillingPaymentAttemptResponse instance.

Implementation

PaginatedBillingPaymentAttemptResponse({
  this.data = const [],
  required this.totalCount,
});