fixup! TF-4186 Use super.props to include parent's properties in the props override.

This commit is contained in:
dab246
2025-12-08 15:58:46 +07:00
committed by Dat H. Pham
parent f09694577e
commit 06412f1493
@@ -26,5 +26,5 @@ class GetCompanyServerLoginInfoFailure extends FeatureFailure {
}) : super(exception: exception);
@override
List<Object> get props => [super.props, popAllRoute];
List<Object?> get props => [...super.props, popAllRoute];
}