playPath method

Future<Map> playPath(
  1. String path
)

return: play error: {"status": "failure", "errorMsg": ""} play complete: {"status": "complete"}

Implementation

Future<Map<dynamic, dynamic>> playPath(String path) async {
  return await _channel.invokeMethod('playPath', {"path": path});
}