Scrollbar({Key key, Key scrollableKey, Widget child })

Creates a scrollbar.

The child argument must not be null.

Source

Scrollbar({ Key key, this.scrollableKey, this.child }) : super(key: key) {
  assert(child != null);
}