From eb2aa41790e14f0d921fd8af8166a752ed56e0ec Mon Sep 17 00:00:00 2001 From: Sambo Chea Date: Sat, 27 May 2023 10:38:17 +0700 Subject: [PATCH] Updated options --- lib/src/base.dart | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/lib/src/base.dart b/lib/src/base.dart index ce15064..32a8dc3 100644 --- a/lib/src/base.dart +++ b/lib/src/base.dart @@ -93,9 +93,6 @@ class VLogs { } static VLogs createWith(String appId, String apiKey) { - return create(VLogsOptions( - appId: appId, - apiKey: apiKey, - )); + return create(VLogsOptions.builder().appId(appId).apiKey(apiKey).build()); } }