From 7f732e3769e5e243ef97d0467d94dc3ac61f66b0 Mon Sep 17 00:00:00 2001 From: xavierchanth Date: Tue, 21 Nov 2023 16:28:08 -0500 Subject: [PATCH] docs: explain the use of "on" keyword --- .../util/sshnp_ssh_key_handler/sshnp_local_ssh_key_handler.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/noports_core/lib/src/sshnp/util/sshnp_ssh_key_handler/sshnp_local_ssh_key_handler.dart b/packages/noports_core/lib/src/sshnp/util/sshnp_ssh_key_handler/sshnp_local_ssh_key_handler.dart index 8ba3f1e7b..ff253b5c7 100644 --- a/packages/noports_core/lib/src/sshnp/util/sshnp_ssh_key_handler/sshnp_local_ssh_key_handler.dart +++ b/packages/noports_core/lib/src/sshnp/util/sshnp_ssh_key_handler/sshnp_local_ssh_key_handler.dart @@ -1,6 +1,8 @@ import 'package:noports_core/src/common/io_types.dart'; import 'package:noports_core/sshnp_foundation.dart'; +/// [SshnpLocalSshKeyHandler] uses variables from [SshnpCore] so it is a mixin +/// on [SshnpCore] mixin SshnpLocalSshKeyHandler on SshnpCore implements SshnpKeyHandler { @override LocalSshKeyUtil get keyUtil => _sshKeyUtil;