scroll_range.dart 98 B

123456
  1. class ScrollRange {
  2. ScrollRange(this.top, this.bottom);
  3. final int top;
  4. final int bottom;
  5. }