updateTheme method

void updateTheme()

Implementation

void updateTheme() {
  setState(() {
    if (_theme == lightTheme) {
      _theme = darkTheme;
    } else {
      _theme = lightTheme;
    }
  });
}