baseiOSTheme property

CupertinoThemeData? get baseiOSTheme
inherited

Retain the original iOS theme

Implementation

CupertinoThemeData? get baseiOSTheme => _baseiOSTheme;
set baseiOSTheme (CupertinoThemeData? theme)
inherited

Implementation

set baseiOSTheme(CupertinoThemeData? theme) {
  if (_baseiOSTheme != null && theme != null) {
    _baseiOSTheme = theme;
  }
}