removeOutline method

Future<bool> removeOutline(
  1. String uuid
)

Removes an outline from the current document by its UUID. Parameters:

  • uuid The 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);
}