我正在尝试创建Auth和Todo应用程序,问题是我不知道哪个是正确的用法,也不知道两者之间的区别。
我想在将项目添加到待办事项列表之前使用它。
它们之间有明确的区别吗,还是有相同的含义?
我看到共同的.dart文件,但它写这样.
/// Creates an [AsyncValue] in loading state.
///
/// Prefer always using this constructor with the `const` keyword.
// coverage:ignore-start
const factory AsyncValue.loading() = AsyncLoading<T>;```
1条答案
按热度按时间g6baxovj1#
它们是相同的。AsyncData、AsyncError和AsyncLoading只是AsyncValue不同状态的语法糖
这是库中的实现,它确实是相同的。