我正在使用图书馆,并且在很多地方?。使用了运算符,我无法理解它的用途。
Timer _debounceTimer;
@override
initState() {
_textController.addListener(() {
// We debounce the listener as sometimes the caret position is updated after the listener
// this assures us we get an accurate caret position.
if (_debounceTimer?.isActive ?? false) _debounceTimer.cancel();
Run Code Online (Sandbox Code Playgroud)