Guide constructor

const Guide(
  1. {Key? key,
  2. required String title,
  3. required String content,
  4. required String subTitle,
  5. required List<Source?> curators}
)

Implementation

const Guide(
    {super.key,
    required this.title,
    required this.content,
    required this.subTitle,
    required this.curators});