onChange method
Implementation
@override
VoidCallback onChange(SetChangeSetEntryFunc handler, {String? from}) {
final sub = _controller.stream.listen(handler);
return () => sub.cancel();
}
@override
VoidCallback onChange(SetChangeSetEntryFunc handler, {String? from}) {
final sub = _controller.stream.listen(handler);
return () => sub.cancel();
}