enterAnnotationCreationMode method

  1. @override
Future<bool?> enterAnnotationCreationMode([
  1. AnnotationTool? annotationTool
])
override

Enters annotation creation mode for the specified annotationTool.

If no tool is specified, the platform default is used (typically AnnotationTool.inkPen).

Returns true if the mode was entered, false if the request was rejected (e.g. the viewer is not ready), or null if the platform does not report a result.

Implementation

@override
Future<bool?> enterAnnotationCreationMode(
    [AnnotationTool? annotationTool]) async {
  throw UnimplementedError(
      'enterAnnotationCreationMode is not implemented on this platform.');
}