blob: 39ba41736d5652ca5d581c41cd9e352d4acccdc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import '../../../../../../export.dart';
class Bluetooth {
final Icon icon;
final String name;
final bool? isConnected;
Bluetooth({
required this.icon,
required this.name,
this.isConnected = false,
});
}
|