TaskUpdateRequest class

Request model for updating a task.

Annotations
  • @JsonSerializable(createFactory: false)

Constructors

TaskUpdateRequest.new({String? title, String? bucketId, String? completedBy, int? percentComplete, int? priority, String? dueDateTime, String? startDateTime})
Creates a new TaskUpdateRequest instance.

Properties

bucketId String?
The new bucket ID for the task.
final
completedBy String?
The ID of the user who completed the task.
final
dueDateTime String?
The date and time when the task is due.
final
hashCode int
The hash code for this object.
no setterinherited
percentComplete int?
The percentage of the task that is complete.
final
priority int?
The priority of the task.
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
startDateTime String?
The date and time when the task starts.
final
title String?
The new title of the task.
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toJson() Map<String, dynamic>
Converts this TaskUpdateRequest instance to JSON data.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited