SemanticsWrapper.header constructor

SemanticsWrapper.header({
  1. required dynamic label,
})

Wrapper that governs a header that divides a page

Implementation

SemanticsWrapper.header({required label})
    : assert(label != ""),
      super(label: label, header: true, readOnly: true);