update on settings and customer background

This commit is contained in:
Patrick Alvin Alcala 2025-03-26 14:41:48 +08:00
parent 05c3208cad
commit 6424e82d54
18 changed files with 227 additions and 42 deletions

View file

@ -0,0 +1,8 @@
abstract class LanguageEvent {}
class LanguageSetValue extends LanguageEvent {
final String value;
LanguageSetValue(this.value);
}
class LanguageGetValue extends LanguageEvent {}