Future<bool> requestCamera() async { final status = await Permission.camera.request(); if (status.isGranted) return true; return false; }