TransformInfo constructor

TransformInfo({
  1. int? index,
  2. double? position,
  3. double? width,
  4. double? height,
  5. int? activeIndex,
  6. required int fromIndex,
  7. bool? forward,
  8. bool? done,
  9. double? viewportFraction,
  10. Axis? scrollDirection,
})

Implementation

TransformInfo({
  this.index,
  this.position,
  this.width,
  this.height,
  this.activeIndex,
  required this.fromIndex,
  this.forward,
  this.done,
  this.viewportFraction,
  this.scrollDirection,
});