ImportDataSuccessProjectGrantMember constructor

ImportDataSuccessProjectGrantMember({
  1. String? projectId,
  2. String? grantId,
  3. String? userId,
})

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;
}