Entity constructor

Entity(
  1. String path,
  2. {required EntityType type,
  3. Disk? io}
)

Implementation

Entity(this.path, {required this.type, Disk? io}) : io = io ?? Disk.io;