getchannelId method

Future<String?> getchannelId()
override

Implementation

Future<String?> getchannelId() async {
  dynamic  result;
  try {
    result = await instance.invokeMethod('getChannelId');
    channelId = result;
  } on PlatformException catch (e) {
    e.message;
  }
  return result;
}