10 lines
168 B
Dart
10 lines
168 B
Dart
import 'bluetooth.dart';
|
|
|
|
abstract class Exception {
|
|
String get message;
|
|
}
|
|
|
|
abstract class ConnectionLostException extends Exception {
|
|
Peripheral get peripheral;
|
|
}
|