setAudioTrack method

Future<void> setAudioTrack(
  1. int textureId,
  2. Map<String, dynamic> track
)

Overlays an external audio track on the loaded timeline.

track is a JSON-compatible map produced by AudioTrack.toJson.

Implementation

Future<void> setAudioTrack(int textureId, Map<String, dynamic> track) {
  throw UnimplementedError('setAudioTrack() has not been implemented.');
}