20 lines
364 B
Dart
20 lines
364 B
Dart
|
// 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();
|
||
|
// }
|
||
|
|
||
|
// }
|