OpenWListView constructor

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

Returns a ListView in Teta

Implementation

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