Add null-safety for list props with type dynamic

This commit is contained in:
dab246
2023-02-17 17:07:08 +07:00
committed by Dat Vu
parent f614a2bab4
commit 163ed8b9fe
95 changed files with 101 additions and 101 deletions
@@ -17,5 +17,5 @@ class AddRecipientsInForwardingFailure extends FeatureFailure {
AddRecipientsInForwardingFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -19,5 +19,5 @@ class CreateNewIdentityFailure extends FeatureFailure {
CreateNewIdentityFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -18,5 +18,5 @@ class CreateNewRuleFilterFailure extends FeatureFailure {
CreateNewRuleFilterFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -16,5 +16,5 @@ class DeleteEmailRuleFailure extends FeatureFailure {
DeleteEmailRuleFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -16,5 +16,5 @@ class DeleteIdentityFailure extends FeatureFailure {
DeleteIdentityFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -25,5 +25,5 @@ class DeleteRecipientInForwardingFailure extends FeatureFailure {
DeleteRecipientInForwardingFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -18,5 +18,5 @@ class EditEmailRuleFilterFailure extends FeatureFailure {
EditEmailRuleFilterFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -16,5 +16,5 @@ class EditIdentityFailure extends FeatureFailure {
EditIdentityFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -17,5 +17,5 @@ class EditLocalCopyInForwardingFailure extends FeatureFailure {
EditLocalCopyInForwardingFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -20,5 +20,5 @@ class GetAllIdentitiesFailure extends FeatureFailure {
GetAllIdentitiesFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -16,5 +16,5 @@ class GetAllRulesFailure extends FeatureFailure {
GetAllRulesFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -25,5 +25,5 @@ class GetAllVacationFailure extends FeatureFailure {
GetAllVacationFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -16,5 +16,5 @@ class GetForwardFailure extends FeatureFailure {
GetForwardFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -16,5 +16,5 @@ class LogoutOidcFailure extends FeatureFailure {
LogoutOidcFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -26,5 +26,5 @@ class SaveLanguageFailure extends FeatureFailure {
SaveLanguageFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}
@@ -25,5 +25,5 @@ class UpdateVacationFailure extends FeatureFailure {
UpdateVacationFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}