taskDescription property

  1. @override
String? taskDescription
override

Property getter and setter for taskDescription:

Implementation

@override
String? get taskDescription => _taskDescription;
  1. @override
void taskDescription=(String? taskDescription)
override

Implementation

@override
set taskDescription(String? taskDescription) {
  this._taskDescription = taskDescription;
  wrapped['taskDescription'] = jsonLiteral(taskDescription);
}