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