result property
OperationResult
get
result
The backend result of reading data. If this is
OperationResult.SUCCESS
, data
will contain the
next (possibly zero-length) chunk of image data that was ready for
reading. If this is OperationResult.EOF
, data
will contain the final chunk of image data.
Implementation
OperationResult get result => OperationResult.fromJS(_wrapped.result);
set
result
(OperationResult v)
Implementation
set result(OperationResult v) {
_wrapped.result = v.toJS;
}