messageLinkClic method
Implementation
Future<dynamic> messageLinkClic() async {
try {
final result = sobotMethodChannel.invokeMethod(messageLinkClickMethod);
return result;
} on PlatformException catch (e) {
print(e);
//抛出异常
return {};
}
}