SftpFileEntry constructor

const SftpFileEntry({
  1. required String path,
  2. required SftpFileType type,
  3. int? size,
  4. DateTime? modifiedAt,
})

Implementation

const SftpFileEntry({
  required this.path,
  required this.type,
  this.size,
  this.modifiedAt,
});