addTextAnnotation method

  1. @override
Future<void> addTextAnnotation(
  1. String text,
  2. double x,
  3. double y
)
override

Implementation

@override
Future<void> addTextAnnotation(String text, double x, double y) async {
  await methodChannel.invokeMethod('addTextAnnotation', {
    'text': text,
    'x': x,
    'y': y,
  });
}