configure method
Implementation
@override
Future<void> configure({required String apiKey, required LinkTrailOptions options}) async {
try {
await methodChannel.invokeMethod<void>('configure', {
'apiKey': apiKey,
'options': options.toMap(),
});
} on PlatformException catch (e) {
throw LinkTrailException.fromPlatformException(e);
}
}