updateGetDocumentServerSdk method

Future<Document> updateGetDocumentServerSdk()

Implementation

Future<sm.Document> updateGetDocumentServerSdk() async {
  if (awServerHelper == null) {
    print("awServerHelper not available, check if your apikey is set");
  }
  sm.Document? doc = await awServerHelper?.updateDocument(this);
  return Future.value(doc);
}