BindWithFolderId static method

Future<TasksFolder> BindWithFolderId(
  1. ExchangeService service,
  2. FolderId id
)
Binds to an existing tasks folder and loads its first class properties. Calling this method results in a call to EWS. The service to use to bind to the tasks folder. The Id of the tasks folder to bind to.

Implementation

static Future<TasksFolder> BindWithFolderId(
    ExchangeService service, FolderId id) {
  return TasksFolder.BindWithFolderIdAndPropertySet(
      service, id, PropertySet.FirstClassProperties);
}