getCertificates method

Future<List<X509Certificate>> getCertificates({
  1. bool includeSystemCertificates = true,
  2. bool includeUserCertificates = true,
})

Loads all certificates from the native certificate store of the current platform.

Implementation

Future<List<X509Certificate>> getCertificates({
  bool includeSystemCertificates = true,
  bool includeUserCertificates = true,
}) {
  throw UnimplementedError(
    'The getCertificates method has not been implemented.',
  );
}