LogcatDialog constructor

const LogcatDialog({
  1. Key? key,
  2. required Device device,
  3. required String adbPath,
  4. required VoidCallback onClose,
})

Implementation

const LogcatDialog({
  super.key,
  required this.device,
  required this.adbPath,
  required this.onClose,
});