BksKeyEntry constructor

BksKeyEntry({
  1. required String alias,
  2. required int timestamp,
  3. required String storeType,
  4. required int keyType,
  5. required String format,
  6. required String algorithm,
  7. required Uint8List encoded,
  8. List<BksTrustedCertEntry> certChain = const [],
})

Implementation

BksKeyEntry({
  required super.alias,
  required super.timestamp,
  required super.storeType,
  required this.keyType,
  required this.format,
  required this.algorithm,
  required this.encoded,
  this.certChain = const [],
});