SemanticsWrapper.view constructor

SemanticsWrapper.view({
  1. required dynamic label,
  2. required dynamic hint,
})

Wrapper that governs a view

Implementation

SemanticsWrapper.view({required label, required hint})
    : assert(hint != "" && label != ""),
      super(label: label, hint: hint);