CertAndKey constructor

const CertAndKey({
  1. required String cert,
  2. required String key,
})

Creates a new instance of CertAndKey.

  • cert: The digital certificate.
  • key: The private key paired with the certificate.

Implementation

const CertAndKey({required this.cert, required this.key});