taskDescription property

String get taskDescription

The user-assigned description for the task.

See NSURLSessionTask.taskDescription

Implementation

String get taskDescription => _nsObject.taskDescription?.toDartString() ?? '';
set taskDescription (String value)

The user-assigned description for the task.

See NSURLSessionTask.taskDescription

Implementation

set taskDescription(String value) =>
    _nsObject.taskDescription = value.toNSString();