PutFileEntry constructor

PutFileEntry({
  1. required String filePath,
  2. Uint8List? fileContent,
  3. FileModeTypeEnum? fileMode,
  4. SourceFileSpecifier? sourceFile,
})

Implementation

PutFileEntry({
  required this.filePath,
  this.fileContent,
  this.fileMode,
  this.sourceFile,
});