taskDescription property
String
get
taskDescription
The user-assigned description for the task.
Implementation
String get taskDescription => _nsObject.taskDescription?.toDartString() ?? '';
set
taskDescription
(String value)
The user-assigned description for the task.
Implementation
set taskDescription(String value) =>
_nsObject.taskDescription = value.toNSString();