13 lines
212 B
Dart
13 lines
212 B
Dart
|
|
|
||
|
|
import 'io_udpType.dart';
|
||
|
|
|
||
|
|
abstract class UDPReply{
|
||
|
|
|
||
|
|
CommandUDPType? commandType;
|
||
|
|
|
||
|
|
//command key flag
|
||
|
|
int status = 0;
|
||
|
|
List<int> data = [];
|
||
|
|
UDPReply.parseData(this.commandType, List<int> dataDetail);
|
||
|
|
|
||
|
|
}
|