ClientException constructor

const ClientException(
  1. String message, {
  2. Uri? reference,
  3. dynamic cause,
})

Create an exception of message, and optional reference and cause.

Implementation

const ClientException(super.message, {super.reference, this.cause});