AceController<T> constructor

AceController<T>({
  1. double? maxScale,
  2. double? pointSpace,
  3. void onScrollBoundary(
    1. ScrollBoundary boundary
    )?,
  4. double paddingRight = 0,
  5. required int maxLength,
  6. double pointWidth = 1,
})

Implementation

AceController({
  this.maxScale,
  this.pointSpace,
  this.onScrollBoundary,
  this.paddingRight = 0,
  required this.maxLength,
  this.pointWidth = 1,
});