DebugOptions constructor

DebugOptions({
  1. bool? enableHotKeyLogging,
})

Implementation

factory DebugOptions({
  $core.bool? enableHotKeyLogging,
}) {
  final $result = create();
  if (enableHotKeyLogging != null) {
    $result.enableHotKeyLogging = enableHotKeyLogging;
  }
  return $result;
}