unbind method
void
unbind()
Unbinds the notifier from the other value.
Implementation
void unbind() {
if (_bound == null) return;
_bound!.unbind();
_bound = null;
}
Unbinds the notifier from the other value.
void unbind() {
if (_bound == null) return;
_bound!.unbind();
_bound = null;
}