BindWithFolderId static method

Future<ContactsFolder> BindWithFolderId(
  1. ExchangeService service,
  2. FolderId id
)
Binds to an existing contacts folder and loads its first class properties. The service to use to bind to the contacts folder. The Id of the contacts folder to bind to.

Implementation

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