AddAppKeyRequest constructor

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

Implementation

factory AddAppKeyRequest({
  $core.String? projectId,
  $core.String? appId,
  $17.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;
}