PaginatedBillingStatementResponse constructor

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

Returns a new PaginatedBillingStatementResponse instance.

Implementation

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