AddPublicKeyResponse constructor

AddPublicKeyResponse({
  1. String? keyId,
  2. Timestamp? creationDate,
})

Implementation

factory AddPublicKeyResponse({
  $core.String? keyId,
  $3.Timestamp? creationDate,
}) {
  final result = create();
  if (keyId != null) result.keyId = keyId;
  if (creationDate != null) result.creationDate = creationDate;
  return result;
}