RenderViewport constructor

RenderViewport({
  1. required ViewportController controller,
  2. required String zoneId,
  3. required int? width,
  4. required int? height,
  5. required bool showScrollbar,
  6. required String scrollbarSeparator,
  7. required ScrollbarChars scrollbarChars,
})

Implementation

RenderViewport({
  required this.controller,
  required this.zoneId,
  required this.width,
  required this.height,
  required this.showScrollbar,
  required this.scrollbarSeparator,
  required this.scrollbarChars,
});