addTextOverlay method

Future<void> addTextOverlay(
  1. int textureId,
  2. Map<String, dynamic> overlay
)

Adds a text overlay to the loaded timeline.

overlay is a JSON-compatible map produced by TimelineTextOverlay.toJson.

Implementation

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