getConfig method

BaseTotalConfig getConfig({
  1. String configId = GLOBAL_CONFIG_ID,
})

获取合适的配置 1、获取 configId 对应的全局主题配置, 2、若获取的为 null,则使用默认的全局配置。 3、若没有配置 GLOBAL_CONFIG_ID ,则使用 BRUNO 的配置。

Implementation

BaseTotalConfig getConfig({String configId = GLOBAL_CONFIG_ID}) {
  BaseTotalConfig? allThemeConfig = globalConfig[configId] ??
      globalConfig[GLOBAL_CONFIG_ID] ??
      globalConfig[PHOENIX_CONFIG_ID];
  assert(allThemeConfig != null, 'No suitable config found.');
  return allThemeConfig!;
}