RefreshPhoto.dart 288 B

123456789101112131415
  1. import 'package:wechat_assets_picker/wechat_assets_picker.dart';
  2. class RefreshPhoto{
  3. late List<AssetEntity> _imageFiles;
  4. RefreshPhoto(this._imageFiles);
  5. List<AssetEntity> get imageFiles => _imageFiles;
  6. set imageFiles(List<AssetEntity> value) {
  7. _imageFiles = value;
  8. }
  9. }