setEngine method

Future setEngine(
  1. String engine
)

Future which invokes the platform specific method for setEngine Android supported only

Implementation

Future<dynamic> setEngine(String engine) async {
  await _channel.invokeMethod('setEngine', engine);
}