KeyEntryObject constructor

KeyEntryObject({
  1. required String algorithm,
  2. required String name,
  3. String? metadata,
  4. required Map<String, dynamic> tags,
  5. required Key key,
})

Constructs an instance of KeyEntryObject.

Implementation

KeyEntryObject({
  required this.algorithm,
  required this.name,
  this.metadata,
  required this.tags,
  required this.key,
});