File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
lib/app_configuration/bloc Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -24,13 +24,13 @@ class AppConfigurationLoaded extends AppConfigurationEvent {
24
24
/// {@endtemplate}
25
25
class AppConfigurationUpdated extends AppConfigurationEvent {
26
26
/// {@macro app_configuration_updated}
27
- const AppConfigurationUpdated (this .appConfig );
27
+ const AppConfigurationUpdated (this .remoteConfig );
28
28
29
29
/// The updated application configuration.
30
- final AppConfig appConfig ;
30
+ final RemoteConfig remoteConfig ;
31
31
32
32
@override
33
- List <Object ?> get props => [appConfig ];
33
+ List <Object ?> get props => [remoteConfig ];
34
34
}
35
35
36
36
/// {@template app_configuration_discarded}
@@ -50,12 +50,12 @@ class AppConfigurationDiscarded extends AppConfigurationEvent {
50
50
class AppConfigurationFieldChanged extends AppConfigurationEvent {
51
51
/// {@macro app_configuration_field_changed}
52
52
const AppConfigurationFieldChanged ({
53
- this .appConfig ,
53
+ this .remoteConfig ,
54
54
});
55
55
56
- /// The partially or fully updated AppConfig object.
57
- final AppConfig ? appConfig ;
56
+ /// The partially or fully updated RemoteConfig object.
57
+ final RemoteConfig ? remoteConfig ;
58
58
59
59
@override
60
- List <Object ?> get props => [appConfig ];
60
+ List <Object ?> get props => [remoteConfig ];
61
61
}
You can’t perform that action at this time.
0 commit comments