FileBytes constructor

const FileBytes({
  1. required String path,
  2. required Uint8List bytes,
})

Implementation

const FileBytes({
  required this.path,
  required this.bytes,
});