ConfigData constructor

const ConfigData({
  1. required double doubleEditorInfiniteScrollViewRange,
  2. required double doubleEditorInfiniteScrollViewScrollSpeedFactor,
})

Creates a ConfigData.

The doubleEditorInfiniteScrollViewRange is the range of the double editor infinite scroll view.

The doubleEditorInfiniteScrollViewScrollSpeedFactor is the scroll speed factor of the double editor infinite scroll view.

Implementation

const ConfigData({
  required this.doubleEditorInfiniteScrollViewRange,
  required this.doubleEditorInfiniteScrollViewScrollSpeedFactor,
});