TrustKey constructor

const TrustKey({
  1. required String signerId,
  2. required String keyId,
  3. required String algorithm,
  4. required List<int> publicKey,
  5. required String fingerprint,
  6. required Set<String> usages,
  7. required String status,
})

Implementation

const TrustKey({
  required this.signerId,
  required this.keyId,
  required this.algorithm,
  required this.publicKey,
  required this.fingerprint,
  required this.usages,
  required this.status,
});