done property

  1. @TagNumber(3)
bool done

If the value is false, it means the operation is still in progress. If true, the operation is completed, and either error or response is available.

Implementation

@$pb.TagNumber(3)
$core.bool get done => $_getBF(2);
  1. @TagNumber(3)
void done=(bool v)

Implementation

@$pb.TagNumber(3)
set done($core.bool v) {
  $_setBool(2, v);
}