AddAppKeyRequest constructor

AddAppKeyRequest({
  1. String? projectId,
  2. String? appId,
  3. KeyType? type,
  4. Timestamp? expirationDate,
})

Implementation

factory AddAppKeyRequest({
  $core.String? projectId,
  $core.String? appId,
  $15.KeyType? type,
  $6.Timestamp? expirationDate,
}) {
  final $result = create();
  if (projectId != null) {
    $result.projectId = projectId;
  }
  if (appId != null) {
    $result.appId = appId;
  }
  if (type != null) {
    $result.type = type;
  }
  if (expirationDate != null) {
    $result.expirationDate = expirationDate;
  }
  return $result;
}