Operation constructor

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

Implementation

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