show method
Implementation
void show(VisibilityMode mode) {
Map<String, dynamic> arguments = <String, dynamic>{};
arguments.putIfAbsent("visibility_mode", () => mode.index);
_channel.invokeMethod('show', arguments);
}
void show(VisibilityMode mode) {
Map<String, dynamic> arguments = <String, dynamic>{};
arguments.putIfAbsent("visibility_mode", () => mode.index);
_channel.invokeMethod('show', arguments);
}