current property

double? get current

Implementation

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

Implementation

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