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
@@ -13,5 +13,5 @@ class VerifyNameFailure extends FeatureFailure {
VerifyNameFailure(this.exception);
@override
List<Object> get props => [exception];
List<Object?> get props => [exception];
}