ccTabConfig static method

CustomTabsOption ccTabConfig({
  1. Color? toolbarColor,
})

Implementation

static CustomTabsOption ccTabConfig({Color? toolbarColor}) {
  return CustomTabsOption(
    toolbarColor: toolbarColor,
    enableDefaultShare: true,
    enableUrlBarHiding: true,
    showPageTitle: true,
  );
}