SshKey constructor

const SshKey({
  1. required String name,
  2. required String fingerprint,
  3. required String publicKey,
  4. required DateTime createdAt,
})

Implementation

const factory SshKey({
  required String name,
  required String fingerprint,
  required String publicKey,
  required DateTime createdAt,
}) = _SshKey;