isOpen property

bool get isOpen

Whether the associated search view is currently open.

Implementation

bool get isOpen {
  assert(isAttached, 'M3ESearchController is not attached to an anchor.');
  return _anchor!.viewIsOpen;
}