DataProjectGrant constructor

DataProjectGrant({
  1. String? grantId,
  2. AddProjectGrantRequest? projectGrant,
})

Implementation

factory DataProjectGrant({
  $core.String? grantId,
  $0.AddProjectGrantRequest? projectGrant,
}) {
  final result = create();
  if (grantId != null) result.grantId = grantId;
  if (projectGrant != null) result.projectGrant = projectGrant;
  return result;
}