initialize method

Future<void> initialize()

Implementation

Future<void> initialize() async {
  try {
    await _channel.invokeMethod('initialize');
  } on PlatformException catch (e) {
    debugPrint("CameraController: Failed to send initialize command: '${e.message}'.");
  }
}