startDown method
Implementation
Future<bool> startDown(String filePath) async {
if (isCreated == false) return false;
if (source == null) return false;
return await app_player_channel
.invokeMethod("app_player_start_down", [this.textureId, filePath]);
}