mirror of
https://github.com/alibaba/flutter-go.git
synced 2025-08-06 00:49:46 +08:00
19 lines
468 B
Dart
19 lines
468 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);
|
|
} |