openFile static method
Implementation
static Future<void> openFile({required String filePath, bool local = false, String style = "0", String topBarBgColor = "#2CFC47", String? menuData}) async {
if (defaultTargetPlatform == TargetPlatform.android) {
await _channel.invokeMethod('openFile', {
"filePath": filePath,
"local": local.toString(),
"style": style,
"topBarBgColor": topBarBgColor,
"menuData": menuData,
});
} else {}
}