theme property

CustomizationTheme? get theme

Allows you to set a visual theme for buttons controls.

Default: CustomizationTheme.CLEAR.

IOS only.

Implementation

CustomizationTheme? get theme => _theme;
set theme (CustomizationTheme? val)

Implementation

set theme(CustomizationTheme? val) {
  _theme = val;
  _set({"theme": val?.value});
}