Tmpfs constructor

Tmpfs({
  1. required String containerPath,
  2. required int size,
  3. List<String>? mountOptions,
})

Implementation

Tmpfs({
  required this.containerPath,
  required this.size,
  this.mountOptions,
});