createMapWithPath static method

Map<String, dynamic> createMapWithPath(
  1. Tag tag,
  2. String filePath
)

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,
  };
}