ImportDataSuccessProjectMember constructor

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

Implementation

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