getWidgetTheme method

TWidgetTheme getWidgetTheme(
  1. TVariant type, [
  2. Color? color
])

Implementation

TWidgetTheme getWidgetTheme(TVariant type, [Color? color]) =>
    color != null
        ? TWidgetTheme.from(isDarkMode, color, type)
        : TWidgetTheme.surfaceTheme(colors, variant: type);