updateObjectServerSdk method
Implementation
Future<dynamic> updateObjectServerSdk() async {
if (awServerHelper == null) {
print("awServerHelper not available, check if your apikey is set");
}
AwObject? object = await awServerHelper?.updateAwObjectDocument(this);
return Future.value(object);
}