GetSubscriptionsSearchResponse constructor

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

SearchResult

Implementation

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