camera static method

Future<bool> camera({
  1. double? width,
})

相机权限

Implementation

static Future<bool> camera({double? width}) async {
  return await request(
    permission: Permission.camera,
    message: '我们申请使用您设备的相机权限,用于扫描二维码或者采集必要的身份信息',
    error: '请授权相机权限',
    width: width,
  );
}