SizedConfig constructor

const SizedConfig({
  1. required double width,
  2. required double height,
  3. bool initiallyExpanded = false,
  4. bool hasCloseButton = true,
})

Implementation

const SizedConfig({
  required this.width,
  required this.height,
  this.initiallyExpanded = false,
  this.hasCloseButton = true,
});