Dock constructor

const Dock({
  1. required List<Panel> panels,
  2. String? initialPanel,
  3. bool overlay = false,
  4. double? size,
})

Implementation

const Dock({
  required this.panels,
  this.initialPanel,
  this.overlay = false,
  this.size,
});