MaterialIndicatorDelegate constructor

const MaterialIndicatorDelegate({
  1. required MaterialIndicatorBuilder builder,
  2. IndicatorBuilder scrollableBuilder = _defaultBuilder,
  3. Color? backgroundColor,
  4. double displacement = 40.0,
  5. double edgeOffset = 0.0,
  6. bool withRotation = true,
  7. double elevation = 2.0,
  8. Clip clipBehavior = Clip.none,
})

Implementation

const MaterialIndicatorDelegate({
  required this.builder,
  this.scrollableBuilder = _defaultBuilder,
  this.backgroundColor,
  this.displacement = 40.0,
  this.edgeOffset = 0.0,
  this.withRotation = true,
  this.elevation = 2.0,
  this.clipBehavior = Clip.none,
});