style property

LayoutComponentStyle? style
inherited

Implementation

LayoutComponentStyle? get style => _style;
void style=(LayoutComponentStyle? style)
inherited

Implementation

set style(LayoutComponentStyle? style) {
  _style = style;
  styleId = style?.id ?? Core.missingId;
  if (style != null) {
    setupStyle(style);
  }
}