mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-08-24 10:50:22 +08:00
20 lines
476 B
Dart
20 lines
476 B
Dart
class CollectionEvent {
|
|
final String widgetName;
|
|
final String router;
|
|
final bool isRemove;
|
|
// token uid...
|
|
CollectionEvent(this.widgetName, this.router, this.isRemove);
|
|
}
|
|
|
|
class UserGithubOAuthEvent {
|
|
final String loginName;
|
|
final String token;
|
|
final bool isSuccess;
|
|
UserGithubOAuthEvent(this.loginName, this.token, this.isSuccess);
|
|
}
|
|
|
|
class UserSettingThemeColorEvent {
|
|
final int settingThemeColor;
|
|
UserSettingThemeColorEvent(this.settingThemeColor);
|
|
}
|