cancel method
Implementation
void cancel([T? data, bool withAnime = true]) {
_withAnime = withAnime;
_overlayEntry?.remove();
if (!_completer.isCompleted) _completer.complete(data);
_data = data;
}
void cancel([T? data, bool withAnime = true]) {
_withAnime = withAnime;
_overlayEntry?.remove();
if (!_completer.isCompleted) _completer.complete(data);
_data = data;
}