show method

Future<void> show(
  1. String placement
)

Implementation

Future<void> show(String placement) {
  return _channel.invokeMethod("show", <String, dynamic>{
    'placement': placement,
  });
}