CertificateError constructor

CertificateError({
  1. required String message,
  2. String? host,
  3. String? certificateInfo,
  4. RequestOptions? requestOptions,
  5. StackTrace? stackTrace,
  6. Object? originalError,
  7. DateTime? timestamp,
})

Implementation

CertificateError({
  required super.message,
  this.host,
  this.certificateInfo,
  super.requestOptions,
  super.stackTrace,
  super.originalError,
  super.timestamp,
});