SandBoxModel constructor

SandBoxModel({
  1. String name = '',
  2. String path = '',
  3. num byte = 0,
  4. FileType? fileType,
  5. List<SandBoxModel>? childrens,
})

Implementation

SandBoxModel({
  this.name = '',
  this.path = '',
  this.byte = 0,
  this.fileType,
  this.childrens,
});