ScrollableAreaArrows.only constructor

ScrollableAreaArrows.only({
  1. bool top = false,
  2. bool bottom = false,
  3. bool start = false,
  4. bool end = false,
  5. double margin = 10,
})

only

Implementation

factory ScrollableAreaArrows.only({
  bool top = false,
  bool bottom = false,
  bool start = false,
  bool end = false,
  double margin = 10,
}) => ScrollableAreaArrows(
      top: top,
      bottom: bottom,
      start: start,
      end: end,
      margin: margin,
    );