disposeBusyManagement method
void
disposeBusyManagement()
Dispose resources used in this mixin.
This will nullify busy title and message and dispose the ValueNotifier.
Implementation
void disposeBusyManagement() {
_busyTitle = null;
_busyMessage = null;
_isBusy.dispose();
}