PhotoData constructor

PhotoData({
  1. required dynamic imageData,
  2. bool allowEdit = true,
})

构建照片数据

Implementation

PhotoData({
  required this.imageData,
  this.allowEdit = true,
});