Albums constructor

const Albums({
  1. Key? key,
  2. required List<Album>? albums,
  3. required Function onTap,
})

Implementation

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