launchFanmeterView method
Implementation
@override
Future<int> launchFanmeterView(int? eventId) async {
final int result = await methodChannel.invokeMethod<int>(
'launchFanmeterView', {'eventId': eventId}
) ?? -90;
return result;
}