hide method

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

Hides the GiphyDialog.

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

Implementation

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