baseTheme property

ThemeData? get baseTheme
inherited

Retain the original Android theme

Implementation

ThemeData? get baseTheme => _baseTheme;
set baseTheme (ThemeData? theme)
inherited

Implementation

set baseTheme(ThemeData? theme) {
  if (_baseTheme == null && theme != null) {
    _baseTheme = theme;
  }
}