unfocus method

Future<Online> unfocus(
  1. AbstractSelector selector, {
  2. bool show = true,
})

Implementation

Future<Online> unfocus(
  AbstractSelector selector, {
  bool show = true,
}) async {
  var Online = await this;
  return Online.unfocus(
    selector,
    show: show,
  );
}