show method

void show([
  1. String? tag
])

Implementation

void show([String? tag]) async {
  if (await isLoaded == true) {
    _channel.invokeMethod('show', <String, dynamic>{
      'id': id,
      'tag': tag
    });
  }
}