mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-05-19 22:06:31 +08:00
9 lines
136 B
Dart
9 lines
136 B
Dart
import 'package:event_bus/event_bus.dart';
|
|
|
|
EventBus eventBus = new EventBus();
|
|
|
|
class MyEvent {
|
|
String text;
|
|
MyEvent(this.text);
|
|
}
|