estimatedCompletion property
int?
get
estimatedCompletion
If result is OperationResult.SUCCESS
, an estimate of how
much of the total scan data has been delivered so far, in the range
0-100.
Implementation
int? get estimatedCompletion => _wrapped.estimatedCompletion;
set
estimatedCompletion
(int? v)
Implementation
set estimatedCompletion(int? v) {
_wrapped.estimatedCompletion = v;
}