GrpcError.alreadyExists constructor

const GrpcError.alreadyExists([
  1. String? message,
  2. List<GeneratedMessage>? details,
  3. Object? rawResponse
])

Some entity that we attempted to create (e.g., file or directory) already exists.

Implementation

const GrpcError.alreadyExists([this.message, this.details, this.rawResponse])
    : trailers = const {},
      code = StatusCode.alreadyExists;