LogConsoleOnShake constructor

const LogConsoleOnShake({
  1. Key? key,
  2. required Widget child,
  3. bool dark = false,
  4. bool debugOnly = true,
})

Implementation

const LogConsoleOnShake({
  Key? key,
  required this.child,
  this.dark = false,
  this.debugOnly = true,
}) : super(key: key);