result property
OperationResult
get
result
Backend result of closing the scanner. Even if this value is not
OperationResult.SUCCESS
, the handle will be invalid and
should not be used for any further operations.
Implementation
OperationResult get result => OperationResult.fromJS(_wrapped.result);
set
result
(OperationResult v)
Implementation
set result(OperationResult v) {
_wrapped.result = v.toJS;
}