Albums constructor
const
Albums({
- Key? key,
- required List<
Album> ? albums, - required Function onTap,
- required MaterialColor themeColor,
Implementation
const Albums({
Key? key,
required List<Album>? albums,
required this.onTap,
required this.themeColor,
}) : _albums = albums,
super(key: key);