state property

LinkState get state

Implementation

LinkState get state {
  return _state;
}
set state (dynamic state)

Implementation

set state(state) {
  this._state = state;
  notifyListeners();
}