ShareTarget constructor

ShareTarget({
  1. required String action,
  2. required String method,
  3. required String enctype,
  4. String? title,
  5. String? text,
  6. String? url,
  7. List<FileFilter>? files,
})

Implementation

ShareTarget({
  required this.action,
  required this.method,
  required this.enctype,
  this.title,
  this.text,
  this.url,
  this.files,
});