FileF.bytes constructor

FileF.bytes(
  1. Uint8List bytes
)

Implementation

factory FileF.bytes(Uint8List bytes) {
  final name = hash(bytes);
  final f = _map[name] ??= FileF.fresh(name);

  f.bytes = bytes;
  //f.initBytes();
  return f;
}