update method

Future<Project> update({
  1. String? description,
})

Updates the project description.

await project.update(description: 'Updated description');

Implementation

Future<Project> update({String? description}) async {
  final response = await client.updateProject(
    projectId,
    description: description,
  );
  return Project(response, client);
}