import { GeTuiSdkPlugin } from '@awesome-cordova-plugins/ge-tui-sdk-plugin';
constructor(private geTuiSdkPlugin: GeTuiSdkPlugin) { }
 this.geTuiSdkPlugin.callback_init((res) => { console.log(res)});
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));
 this.geTuiSdkPlugin.initialize();
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));
 this.geTuiSdkPlugin.getClientId();
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));
 this.geTuiSdkPlugin.getVersion();
  .then((res: any) => console.log(res))
  .catch((error: any) => console.error(error));