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