CertificatePinningException constructor

CertificatePinningException(
  1. String msg, {
  2. required String host,
  3. String? presentedPin,
})

Implementation

CertificatePinningException(
  String msg, {
  required this.host,
  this.presentedPin,
}) : super._(msg);