theme property

ThemeData? theme

Implementation

ThemeData? get theme => _themeData;
void theme=(ThemeData? theme)

Implementation

set theme(final ThemeData? theme) {
  _themeData = theme;
  notifyListeners();
}