PanelComponent constructor

PanelComponent(
  1. String className
)

Implementation

PanelComponent(String className) : super(className) {
  nodeRoot.style
    ..display = 'flex'
    ..flexShrink = '0'
    ..flexGrow = '0'
    ..overflow = 'hidden'
    ..flexDirection = 'row';
}