createObjectServerSdk method

Future createObjectServerSdk()

Implementation

Future<dynamic> createObjectServerSdk() async {
  if (awServerHelper == null) {
    print("awServerHelper not available, check if your apikey is set");
  }

  AwObject? object = await awServerHelper?.createAwObjectDocument(this);
  return Future.value(object);
}