unbind method

Future<void> unbind()

Implementation

Future<void> unbind() async {
  _bound = false;
  for (var e in closable) {
    e();
  }
  closable.clear();
  lastUser = {};
  lastUserCapabilities = {};
  lastUserPrivate = {};
  _grabFirstName = null;
  _grabLastName = null;
}