ShareFile constructor

ShareFile({
  1. required String name,
  2. String? path,
  3. Uint8List? bytes,
})

Implementation

ShareFile({
  required this.name,
  this.path,
  this.bytes,
});