removeOutline method
Removes an outline from the current document by its UUID. Parameters:
uuidThe UUID of the outline to be removed. example:
bool result = await document.removeOutline(outline.uuid);
Implementation
Future<bool> removeOutline(String uuid) async {
return await _channel.invokeMethod('remove_outline', uuid);
}