RemoveAppKeyRequest constructor

RemoveAppKeyRequest({
  1. String? projectId,
  2. String? appId,
  3. String? keyId,
})

Implementation

factory RemoveAppKeyRequest({
  $core.String? projectId,
  $core.String? appId,
  $core.String? keyId,
}) {
  final _result = create();
  if (projectId != null) {
    _result.projectId = projectId;
  }
  if (appId != null) {
    _result.appId = appId;
  }
  if (keyId != null) {
    _result.keyId = keyId;
  }
  return _result;
}