From e49e80d3304decb48b58346445e6e7f1d6b3f757 Mon Sep 17 00:00:00 2001 From: just-stuff-tm Date: Mon, 16 Mar 2026 19:16:55 -0400 Subject: [PATCH] style: format deviceNamePrefixes list for better readability --- lib/connector/meshcore_uuids.dart | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/connector/meshcore_uuids.dart b/lib/connector/meshcore_uuids.dart index 52d62e4..bb5f9bc 100644 --- a/lib/connector/meshcore_uuids.dart +++ b/lib/connector/meshcore_uuids.dart @@ -3,5 +3,10 @@ class MeshCoreUuids { static const String rxCharacteristic = "6e400002-b5a3-f393-e0a9-e50e24dcca9e"; static const String txCharacteristic = "6e400003-b5a3-f393-e0a9-e50e24dcca9e"; - static const List deviceNamePrefixes = ["MeshCore-", "Whisper-", "Wiscore-", "HT-"]; + static const List deviceNamePrefixes = [ + "MeshCore-", + "Whisper-", + "Wiscore-", + "HT-", + ]; }