getCurrentTrackInfo method

Future<Map<String, String>?> getCurrentTrackInfo()

獲取當前正在播放的音樂信息 返回一個 Map<String, String>? 包含音樂信息,如果沒有正在播放的音樂則返回 null

Implementation

Future<Map<String, String>?> getCurrentTrackInfo() {
  throw UnimplementedError('getCurrentTrackInfo() has not been implemented.');
}