GetInvoicesSearchResponse constructor

const GetInvoicesSearchResponse({
  1. required List<Invoice> data,
  2. required bool hasMore,
  3. String? nextPage,
  4. int? totalCount,
  5. required String url,
})

SearchResult

Implementation

const GetInvoicesSearchResponse({
  required this.data,
  required this.hasMore,
  this.nextPage,
  this.totalCount,
  required this.url,
});