CertificatePinningException constructor

const CertificatePinningException({
  1. required String host,
  2. required String message,
  3. String? code = 'CERTIFICATE_PINNING_FAILURE',
  4. Object? originalError,
})

Implementation

const CertificatePinningException({
  required this.host,
  required super.message,
  super.code = 'CERTIFICATE_PINNING_FAILURE',
  super.originalError,
});