OperationError constructor

OperationError({
  1. String? code,
  2. String? kind,
  3. String? message,
})

Implementation

OperationError({
  this.code,
  this.kind,
  this.message,
});