Added qr bloc

This commit is contained in:
Patrick Alvin Alcala 2026-01-26 19:02:41 +08:00
parent bb4cbcabe7
commit 89fdcce613
6 changed files with 56 additions and 0 deletions

View file

@ -0,0 +1,8 @@
abstract class QrEvent {}
class QrSetValue extends QrEvent {
final String value;
QrSetValue(this.value);
}
class QrGetValue extends QrEvent {}