FileF.bytes constructor
FileF.bytes(
- 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;
}