roslib_dart/lib/attach/topic2.dart

20 lines
364 B
Dart
Raw Normal View History

2024-11-21 14:32:20 +08:00
// 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();
// }
// }