ImportDataSuccessProjectGrant constructor

ImportDataSuccessProjectGrant({
  1. String? grantId,
  2. String? projectId,
  3. String? orgId,
})

Implementation

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