Files
be_happy_public/lib/presentation/event/route_event.dart
2026-05-12 12:02:40 +03:00

8 lines
130 B
Dart

abstract class RouteEvent {}
class FetchRouteEvent extends RouteEvent {
final int orderId;
FetchRouteEvent(this.orderId);
}