LoginProfile constructor

LoginProfile({
  1. String? name,
  2. List<PosixAccount>? posixAccounts,
  3. Map<String, SshPublicKey>? sshPublicKeys,
})

Implementation

LoginProfile({
  this.name,
  this.posixAccounts,
  this.sshPublicKeys,
});