addBaseParams method
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,
);
}