MatchItem constructor

MatchItem({
  1. required String from,
  2. required String to,
  3. required String filename,
  4. required int filesize,
})

Implementation

MatchItem({
  required this.from,
  required this.to,
  required this.filename,
  required this.filesize,
});