FeatureClicked method
Implementation
@override
Future<void> FeatureClicked(String tab) async {
try {
await methodChannel.invokeMethod('FeatureClicked', {'feature': tab});
} on PlatformException catch (e) {
print("Failed to call FeatureClicked: ${e.message}");
}
}