dynamic isMobileChanged(
bool newValue
)

Not documented.

Source

@Observe("_isMobile")
isMobileChanged(bool newValue) {
  mainMode = newValue ? 'seamed' : 'cover';
  drawerWidth = newValue ? '100%' : '320px';
  toolbarClass = newValue ? '' : 'tall';
  updateStyles();
}