HomeSection constructor

HomeSection({
  1. required String title,
  2. required List contents,
})

Implementation

HomeSection({
  required this.title,
  required this.contents,
});