@override Future<bool> openCamera(int facing) async { final result = await methodChannel.invokeMethod<bool>('openCamera', { 'facing': facing, }); return result ?? false; }