QuillSingleChildScrollView constructor

const QuillSingleChildScrollView({
  1. required ScrollController controller,
  2. required ViewportBuilder viewportBuilder,
  3. Key? key,
  4. ScrollPhysics? physics,
  5. String? restorationId,
})

Creates a box in which a single widget can be scrolled.

Implementation

const QuillSingleChildScrollView({
  required this.controller,
  required this.viewportBuilder,
  Key? key,
  this.physics,
  this.restorationId,
}) : super(key: key);