AbsoluteResizablePaneController constructor

AbsoluteResizablePaneController(
  1. double _size, {
  2. bool collapsed = false,
})

Creates an AbsoluteResizablePaneController.

Parameters:

  • _size (double, required): Initial absolute size in pixels.
  • collapsed (bool, default: false): Initial collapsed state.

Implementation

AbsoluteResizablePaneController(this._size, {bool collapsed = false})
    : _collapsed = collapsed;