setTheme method

void setTheme(
  1. MiniTheme theme
)

Set the theme instance directly and notify listeners if it changed.

Implementation

void setTheme(MiniTheme theme) {
  if (identical(theme, _theme)) {
    return;
  }
  _theme = theme;
  notifyListeners();
}