This commit is contained in:
LiXiaoqi 2024-11-21 14:34:17 +08:00
parent b2c3e6a743
commit f831233c09

View File

@ -1,19 +0,0 @@
// import 'package:roslibdart/core/request.dart';
// class Topic2 {
// String name;
// String type;
// Topic2({required this.name, required this.type});
// String publish(dynamic message) {
// var req = Request(
// op: "publish",
// id:
// topic: name,
// msg: message,
// );
// return req.toString();
// }
// }