configure method

  1. @override
Future<void> configure(
  1. Map<String, dynamic> config
)
override

Configures the GiphyDialog with the given config settings.

This method sends a 'configure' method call to the native platform with the specified configuration.

config A map of configuration settings for the GiphyDialog.

Implementation

@override
Future<void> configure(Map<String, dynamic> config) async {
  await _channel.invokeMethod('configure', config);
}