show method

  1. @override
Future<void> show()
override

Shows the GiphyDialog.

This method sends a 'show' method call to the native platform to display the GiphyDialog.

Implementation

@override
Future<void> show() async {
  await _channel.invokeMethod('show');
}