configure method

  1. @override
Future<void> configure({
  1. required String apiKey,
})
override

Configure the service with the API key.

Implementation

@override
Future<void> configure({required String apiKey}) async {
  await methodChannel.invokeMethod('configure', {'apiKey': apiKey});
}