Files
universal_ble/lib/src/models/ble_command.dart
T
2024-08-09 22:42:40 +02:00

14 lines
220 B
Dart

import 'dart:typed_data';
class BleCommand {
String service;
String characteristic;
Uint8List? writeValue;
BleCommand({
required this.service,
required this.characteristic,
this.writeValue,
});
}