FloatingThemeToggle constructor

const FloatingThemeToggle({
  1. Key? key,
  2. double? right = 16,
  3. double? top = 50,
  4. double? bottom,
  5. double? left,
})

Creates a new FloatingThemeToggle widget.

Implementation

const FloatingThemeToggle({
  super.key,
  this.right = 16,
  this.top = 50,
  this.bottom,
  this.left,
});