playPath method
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});
}