ConnectException constructor
ConnectException(})
Implementation
ConnectException(
this.code,
this.message, {
this.cause,
Headers? metadata,
List<ErrorDetail>? details,
}) {
if (metadata != null) {
this.metadata.addAll(metadata);
}
if (details != null) {
this.details.addAll(details);
}
}