current property

bool? get current

Implementation

bool? get current => _wrapped.current;
set current (bool? v)

Implementation

set current(bool? v) {
  _wrapped.current = v;
}