OptionPanelWidget constructor

const OptionPanelWidget({
  1. Key? key,
  2. required Widget child,
  3. double? width,
  4. double? height,
  5. Color? backgroundColor,
})

Implementation

const OptionPanelWidget({Key? key, required this.child, this.width, this.height, this.backgroundColor})
    : super(key: key);