configure method

void configure({
  1. GiphySettings? settings,
})

Configures the GiphyDialog with the given settings.

settings The settings for configuring the GiphyDialog.

Implementation

void configure({GiphySettings? settings}) {
  final Map<String, dynamic> config = {'settings': settings?.toJson()};
  GiphyDialogPlatform.instance.configure(config);
}