queryAllPath method

Future<List<String>> queryAllPath()

Used to return Songs path.

Important:

  • Duplicate path will be ignored.

Implementation

Future<List<String>> queryAllPath() async {
  final List<dynamic> resultAllPath =
      await _channel.invokeMethod("queryAllPath");
  return resultAllPath.cast<String>();
}