rebuild method

TWidgetTheme rebuild({
  1. bool? isDarkMode,
  2. Color? color,
  3. TVariant? type,
})

Implementation

TWidgetTheme rebuild({bool? isDarkMode, Color? color, TVariant? type}) {
  return TWidgetTheme.from(
    isDarkMode ?? this.isDarkMode,
    color ?? this.color,
    type ?? this.type,
  );
}