unSelect method

void unSelect(
  1. {bool success = false}
)

Unselects the current selection, and optionally adds the current selection to the list of selections

Args: add (bool): If true, the item will be added to the list of selected items. If false, the item will be removed from the list of selected items. Defaults to true

Implementation

void unSelect({bool success = false}) =>
    _unSelect(globalKey, success: success);