命名参数 'isSetState' 是必需的,但没有相应的参数
The named parameter 'isSetState' is required, but there's no corresponding argument
我想在Provider中使用这个参数,但是我运行出错了。我应该怎么做才能解决?
当我添加require参数时,它会像undre图像
参数是 required 表示它不能为 null 在这种情况下 isSetState
设置为 null
但它只能是 true
或false
.
如果将 true
传递给 isSetState
属性,则 ui 将更新,如果将 false
传递给 isSetState
属性,则 ui 不会再更新了。
bool 只有 2 个值,true 或 false。因此,对于参数 isSetState
,如果要重建,请键入 true
,如果不想重建,则键入 false
。
由于 isSetState 是必填参数,所以你必须传递一个不需要的值
如有帮助请点赞
我想在Provider中使用这个参数,但是我运行出错了。我应该怎么做才能解决?
当我添加require参数时,它会像undre图像
参数是 required 表示它不能为 null 在这种情况下 isSetState
设置为 null
但它只能是 true
或false
.
如果将 true
传递给 isSetState
属性,则 ui 将更新,如果将 false
传递给 isSetState
属性,则 ui 不会再更新了。
bool 只有 2 个值,true 或 false。因此,对于参数 isSetState
,如果要重建,请键入 true
,如果不想重建,则键入 false
。
由于 isSetState 是必填参数,所以你必须传递一个不需要的值
如有帮助请点赞