icon property
IconData
get
icon
Implementation
IconData get icon {
switch (type) {
case AlbumType.image:
return Icons.image;
case AlbumType.video:
return Icons.videocam;
case AlbumType.mixed:
return Icons.perm_media_outlined;
}
}