我想初始化状态。 ( RiverPod : StateNotifier )

时间:2021-02-12 15:13:08

标签: flutter riverpod

我想初始化super的状态。

错误:未为类型“Type”定义运算符“<”。

super(state ?? List<UserModel> [])

供应商

  final userProvider = StateNotifierProvider<UserNotifier>((ref) {
      return UserNotifier();
    });

状态通知程序

class UserNotifier extends StateNotifier<List<UserModel>> {
  UserNotifier([List<UserModel>? state])
      : super(state ?? List<UserModel> []) { // << Error 
    fatchData(); // It's same as initState();
  }
  String collection = "Users";


  Future<List<UserModel>> fatchData() async =>
      firebaseFirestore.collection(collection).get().then((result) {
        final List<UserModel> users = [];
        for (final DocumentSnapshot user in result.docs) {
          users.add(UserModel.fromSnapshot(user));
        }
        return users;
      });
}

1 个答案:

答案 0 :(得分:0)

可以使用<int>[]或使用构造函数List<int>()创建列表,List<int>[]不是有效格式