Added bloc

This commit is contained in:
Patrick Alvin Alcala 2025-12-12 16:39:12 +08:00
parent 4a522a38d9
commit e0618ea3c4
7 changed files with 88 additions and 65 deletions

View file

@ -0,0 +1,8 @@
abstract class UserEvent {}
class UserSetValue extends UserEvent {
final String value;
UserSetValue(this.value);
}
class UserGetValue extends UserEvent {}