RemoveProjectGrantRequest constructor

RemoveProjectGrantRequest({
  1. String? projectId,
  2. String? grantId,
})

Implementation

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