ShowInfoTemplate constructor

const ShowInfoTemplate({
  1. Key? key,
  2. required String title,
  3. required List<ShowInfoDetail> listOfShowInfoDetail,
})

Implementation

const ShowInfoTemplate(
    {Key? key, required this.title, required this.listOfShowInfoDetail})
    : super(key: key);