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