setOptions method
Implementation
Future<Null> setOptions({List<String>? restrictedSchemes, String? webkitHandler}) async {
final args = <String, dynamic> {
'restrictedSchemes': restrictedSchemes ?? <String>[],
};
await _channel.invokeMethod('setOptions', args);
}