initialize method

Future initialize(
  1. MediaStream localStreamScreen
)

Initialize (returns null on non-web as annotation broadcasting is not supported)

Implementation

Future<dynamic> initialize(MediaStream localStreamScreen) async {
  debugPrint(
      'ScreenAnnotationCapture: Annotation broadcasting not supported on this platform');
  debugPrint(
      'ScreenAnnotationCapture: Annotations will only be visible locally');
  return null;
}