removeTextOverlay method
Removes the text overlay identified by overlayId from the loaded
timeline.
Implementation
@override
Future<void> removeTextOverlay(int textureId, String overlayId) {
return methodChannel.invokeMethod<void>(
'removeTextOverlay',
<String, Object?>{'textureId': textureId, 'overlayId': overlayId},
);
}