listBody method

ListBody listBody({
  1. required Axis axis,
  2. bool reverse = false,
})

展示的子内容 >>>

Implementation

ListBody listBody({required Axis axis, bool reverse = false}) {
  return ListBody(
    mainAxis: axis,
    reverse: reverse,
    children: this,
  );
}