addBaseParams method

ExploreSectionArguments addBaseParams(
  1. Map<String, dynamic> baseParams
)

Implementation

ExploreSectionArguments addBaseParams(Map<String, dynamic> baseParams) {
  return ExploreSectionArguments(
    title: title,
    // TODO This doesnt quite work as we also need to update the title
    // link: link != null ? link!.addBaseParams(baseParams) : null,
    link: link,
    description: description,
    baseParams: mergeMaps(baseParams, this.baseParams ?? {}),
    filter: filter,
    backgroundColor: backgroundColor,
    type: type,
  );
}