import 'package:universal_io/io.dart'; class Track { final int number; final String title; final String artiste; final String? album; String? image; String? imageUrl; String? id; Duration? duration; File? file; Track( {required this.number, required this.title, required this.artiste, this.album, this.id, this.duration, this.file, this.image, this.imageUrl}); }