Skip to content

Commit

Permalink
fix!: seal LateAsyncResult
Browse files Browse the repository at this point in the history
  • Loading branch information
lesnitsky committed Apr 22, 2024
1 parent ce6f05a commit 910e316
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/result.dart
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ sealed class AsyncResult<T> {
}
}

class LateAsyncResult<T> {
sealed class LateAsyncResult<T> {
const factory LateAsyncResult.pending() = Pending<T>._;
const factory LateAsyncResult.success(T value) = Success<T>._;
const factory LateAsyncResult.failure([
Expand Down

0 comments on commit 910e316

Please sign in to comment.