FileSelectView constructor

FileSelectView({
  1. Key? key,
  2. required String dirId,
  3. required String dirName,
  4. IPFSFileType fileType = IPFSFileType.any,
  5. List<String>? allowedExtensions = const [],
  6. UploadType uploadType = UploadType.TYPE_IMAGE,
  7. ValueChanged<List<UploadResultEntity>>? callback,
  8. UploadMode uploadMode = UploadMode.MULTIPLE,
})

Implementation

FileSelectView({Key? key,
  required this.dirId,
  required this.dirName,
  this.fileType = IPFSFileType.any,
  this.allowedExtensions=const [],
  this.uploadType = UploadType.TYPE_IMAGE,
  this.callback,
  this.uploadMode = UploadMode.MULTIPLE})
    : super(key: key);