OpenWListView constructor

const OpenWListView({
  1. Key? key,
  2. required dynamic state,
  3. required List<CNode> children,
  4. required bool flagValue,
  5. required FTextTypeInput value,
  6. required bool isVertical,
  7. required bool isReverse,
  8. required bool isPrimary,
  9. required bool shrinkWrap,
})

Returns a ListView in Teta

Implementation

const OpenWListView({
  super.key,
  required this.state,
  required this.children,
  required this.flagValue,
  required this.value,
  required this.isVertical,
  required this.isReverse,
  required this.isPrimary,
  required this.shrinkWrap,
});