DebugFloatingThemeButton constructor

const DebugFloatingThemeButton({
  1. Key? key,
  2. required Widget child,
  3. required AdaptiveThemeManager<Object> manager,
  4. bool debugShow = false,
})

Creates a DebugFloatingThemeButton widget.

Implementation

const DebugFloatingThemeButton({
  super.key,
  required this.child,
  required this.manager,
  this.debugShow = false,
});