pushTheme method

ControlTheme pushTheme(
  1. ThemeData theme
)

Implementation

ControlTheme pushTheme(ThemeData theme) {
  if (theme != data) {
    data = theme;
    notifyTheme();
  }

  return this;
}