/* * @author lsy * @date 2019-09-10 **/ import 'dart:io'; class DirBean { String dirName; File pic; int picCount; DirBean(this.dirName, this.picCount, this.pic); }