LogBar constructor

const LogBar({
  1. Key? key,
  2. required bool dark,
  3. required Widget child,
})

Implementation

const LogBar({Key? key, required this.dark, required this.child})
    : super(key: key);