Add null-safety for list props with type dynamic
This commit is contained in:
@@ -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];
|
||||
}
|
||||
Reference in New Issue
Block a user