createMapWithPath static method
Implementation
static Map<String, dynamic> createMapWithPath(Tag tag, String filePath) {
return {
'filePath': filePath,
'artist': tag.artist,
'title': tag.title,
'album': tag.album,
'year': tag.year,
'genre': tag.genre,
/* 'lyrics': tag.lyrics , */
'language': tag.language,
'composer': tag.composer,
'country': tag.country,
'quality': tag.quality,
'lyrics': tag.lyrics,
};
}