8 lines
129 B
Dart
8 lines
129 B
Dart
|
|
import 'package:event_bus/event_bus.dart';
|
|
|
|
EventBus eventBus = EventBus();
|
|
class EventFn {
|
|
String obj;
|
|
EventFn(this.obj);
|
|
} |