getDefaultEngine property

Future getDefaultEngine

Future which invokes the platform specific method for getDefaultEngine Returns a String of the default engine name ***Android supported only ***

Implementation

Future<dynamic> get getDefaultEngine async {
  final engineName = await _channel.invokeMethod('getDefaultEngine');
  return engineName;
}