ListClass constructor

ListClass({
  1. required int id,
  2. required String preview,
  3. required String file,
})

Implementation

ListClass({
  required this.id,
  required this.preview,
  required this.file,
});