Operation constructor

Operation({
  1. bool? done,
  2. Status? error,
  3. Map<String, Object?>? metadata,
  4. String? name,
  5. Map<String, Object?>? response,
})

Implementation

Operation({
  this.done,
  this.error,
  this.metadata,
  this.name,
  this.response,
});