ImportDataSuccessUserGrant constructor

ImportDataSuccessUserGrant({
  1. String? projectId,
  2. String? userId,
})

Implementation

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