ScrollViewDivider constructor

const ScrollViewDivider({
  1. Key? key,
  2. required ScrollViewDividerPosition position,
  3. ScrollMetrics? metrics,
  4. double? height,
  5. double? thickness,
  6. double? indent,
  7. double? endIndent,
  8. Color? color,
})

Implementation

const ScrollViewDivider({
  super.key,
  required this.position,
  this.metrics,
  this.height,
  this.thickness,
  this.indent,
  this.endIndent,
  this.color,
});