mirror of
https://github.com/flutter/samples.git
synced 2025-11-08 13:58:47 +00:00
As discussed in the PR for the Result pattern implementation (https://github.com/flutter/website/pull/11444) @parlough recommended that `asError` and `asOk` should be not be used, and instead we should use proper exhaustiveness checking. This PR removes the two "convenience" methods and refactors code. In some cases, it was enough with writing a proper `if` clause, while in others it was necessary to use a `switch`. Still, they are present in the `testing` folder, as they can be useful for testing purposes. ## Pre-launch Checklist - [x] I read the [Flutter Style Guide] _recently_, and have followed its advice. - [x] I signed the [CLA]. - [x] I read the [Contributors Guide]. - [x] I have added sample code updates to the [changelog]. - [x] I updated/added relevant documentation (doc comments with `///`). If you need help, consider asking for advice on the #hackers-devrel channel on [Discord]. <!-- Links --> [Flutter Style Guide]: https://github.com/flutter/flutter/blob/master/docs/contributing/Style-guide-for-Flutter-repo.md [CLA]: https://cla.developers.google.com/ [Discord]: https://github.com/flutter/flutter/blob/master/docs/contributing/Chat.md [Contributors Guide]: https://github.com/flutter/samples/blob/main/CONTRIBUTING.md [changelog]: ../CHANGELOG.md
49 lines
1.1 KiB
Dart
49 lines
1.1 KiB
Dart
// Copyright 2024 The Flutter team. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
/// Utility class to wrap result data
|
|
///
|
|
/// Evaluate the result using a switch statement:
|
|
/// ```dart
|
|
/// switch (result) {
|
|
/// case Ok(): {
|
|
/// print(result.value);
|
|
/// }
|
|
/// case Error(): {
|
|
/// print(result.error);
|
|
/// }
|
|
/// }
|
|
/// ```
|
|
sealed class Result<T> {
|
|
const Result();
|
|
|
|
/// Creates a successful [Result], completed with the specified [value].
|
|
const factory Result.ok(T value) = Ok._;
|
|
|
|
/// Creates an error [Result], completed with the specified [error].
|
|
const factory Result.error(Exception error) = Error._;
|
|
}
|
|
|
|
/// Subclass of Result for values
|
|
final class Ok<T> extends Result<T> {
|
|
const Ok._(this.value);
|
|
|
|
/// Returned value in result
|
|
final T value;
|
|
|
|
@override
|
|
String toString() => 'Result<$T>.ok($value)';
|
|
}
|
|
|
|
/// Subclass of Result for errors
|
|
final class Error<T> extends Result<T> {
|
|
const Error._(this.error);
|
|
|
|
/// Returned error in result
|
|
final Exception error;
|
|
|
|
@override
|
|
String toString() => 'Result<$T>.error($error)';
|
|
}
|