publishClickEvent method
Implementation
@override
Future publishClickEvent(String selector, List<String> values) {
return handleNativeCall(
methodChannel.invokeMethod(MethodNames.publishClickEvent, {
'selector': selector,
'values': values,
}),
);
}