SubAspectComponentOptions constructor

const SubAspectComponentOptions(
  1. {required Color backgroundColor,
  2. required List<Widget> children,
  3. bool showControls = true,
  4. double? containerWidthFraction,
  5. double? containerHeightFraction,
  6. double defaultFractionSub = 40.0}
)

Implementation

const SubAspectComponentOptions({
  required this.backgroundColor,
  required this.children,
  this.showControls = true,
  this.containerWidthFraction,
  this.containerHeightFraction,
  this.defaultFractionSub = 40.0,
});