如何监听字符串的变化
factory SomeService() {
return SomeService._(
aGlobalStateVarChanged: GlobalState.aGlobalStateVar.onChange,
)
}
其中 aGlobalStateVarChanged
是 Stream<String>
类型
但是上面的方法不起作用
The getter 'onChange' isn't defined for the type 'String'.
谢谢