import { GoogleNearby } from '@awesome-cordova-plugins/google-nearby/ngx';
constructor(private googleNearby: GoogleNearby) { }
this.googleNearby.publish('Hello')
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));
this.googleNearby.subscribe()
.then((res: any) => console.log(res))
.catch((error: any) => console.error(error));