我想初始化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;
});
}
答案 0 :(得分:0)
可以使用<int>[]
或使用构造函数List<int>()
创建列表,List<int>[]
不是有效格式