new project stable version
This commit is contained in:
11
lib/presentation/event/scooter_code_event.dart
Normal file
11
lib/presentation/event/scooter_code_event.dart
Normal file
@@ -0,0 +1,11 @@
|
||||
abstract class ScooterCodeEvent {}
|
||||
|
||||
class ScooterCodeChanged extends ScooterCodeEvent {
|
||||
final String code;
|
||||
ScooterCodeChanged(this.code);
|
||||
}
|
||||
|
||||
class ScooterCodeSubmitted extends ScooterCodeEvent {
|
||||
final String code;
|
||||
ScooterCodeSubmitted(this.code);
|
||||
}
|
||||
Reference in New Issue
Block a user