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