caption property

String caption

Implementation

String get caption => header.caption;
void caption=(String value)

Implementation

set caption(String value) {
  header.caption = value;
  if (value.isEmpty) {
    header.visible = false;
  }
  else {
    header.visible = true;
  }
}