From 819fe2f5bfa342f3d8724e723c3b41d2fb89b639 Mon Sep 17 00:00:00 2001 From: Aaron Bull Schaefer Date: Sun, 19 Jul 2026 13:10:50 -0700 Subject: [PATCH] fix: export MidiPairingInfoRemovedException from flutter_midi_command The type was added to the platform interface in commit 3c28f4e and is thrown from the BLE transport's pairing stage, but it was left out of the main package's export list, so apps depending only on flutter_midi_command cannot catch it by name and must fall back to the base MidiConnectionException. --- lib/flutter_midi_command.dart | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/flutter_midi_command.dart b/lib/flutter_midi_command.dart index 846e248..39e5377 100644 --- a/lib/flutter_midi_command.dart +++ b/lib/flutter_midi_command.dart @@ -18,6 +18,7 @@ export 'package:flutter_midi_command_platform_interface/flutter_midi_command_pla MidiNotificationSubscriptionException, MidiPacket, MidiPairingFailedException, + MidiPairingInfoRemovedException, MidiPairingRejectedException, MidiPort, MidiServiceDiscoveryException,