ExploreSectionArguments constructor

ExploreSectionArguments(
  1. {required String title,
  2. required ExploreSectionType type,
  3. String? description,
  4. ExplorePageArguments? link,
  5. Map<String, dynamic>? baseParams,
  6. BaseExploreFilter? filter,
  7. Color? backgroundColor}
)

Implementation

ExploreSectionArguments({
  required this.title,
  required this.type,
  this.description,
  this.link,
  this.baseParams,
  this.filter,
  this.backgroundColor,
});