stopDown method

Future<bool> stopDown()

Implementation

Future<bool> stopDown() async {
  if (isCreated == false) return false;
  if (source == null) return false;
  return await app_player_channel
      .invokeMethod("app_player_stop_down", [this.textureId]);
}