SemanticsWrapper.collectionView constructor

SemanticsWrapper.collectionView({
  1. required bool? isEnabled,
  2. required dynamic label,
  3. required bool? isEditable,
})

Wrapper that governs a collection view of items

Implementation

SemanticsWrapper.collectionView(
    {required this.isEnabled, required label, required this.isEditable})
    : assert(isEnabled != null && label != ""),
      super(label: label, enabled: isEnabled, focusable: isEnabled);