getchannelId method
void
getchannelId()
Implementation
void getchannelId() async{
try {
final int result = await instance.invokeMethod('getChannelId');
channelId = result;
} on PlatformException catch (e) {
e.message;
}
}