ImportDataSuccessProjectGrantMember constructor
Implementation
factory ImportDataSuccessProjectGrantMember({
$core.String? projectId,
$core.String? grantId,
$core.String? userId,
}) {
final $result = create();
if (projectId != null) {
$result.projectId = projectId;
}
if (grantId != null) {
$result.grantId = grantId;
}
if (userId != null) {
$result.userId = userId;
}
return $result;
}