applyTheme method

  1. @override
void applyTheme(
  1. HubbleThemeData theme
)
override

Implementation

@override
void applyTheme(HubbleThemeData theme) {
  if (theme.id == themeObjectHashCode) {
    return;
  }
  themeObjectHashCode = theme.id;
  child.applyTheme(theme);
}