configure method

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

Configures the GiphyDialog with the given config settings.

This method should be implemented by platform-specific subclasses to configure the GiphyDialog with the specified configuration.

config A map of configuration settings for the GiphyDialog.

Implementation

Future<void> configure(Map<String, dynamic> config) async {
  throw UnimplementedError('configure() has not been implemented.');
}