HeaderData constructor

HeaderData({
  1. required String title,
  2. required String content,
})

title is the title of the header data. content is the content of the header data.

Implementation

HeaderData({required this.title, required this.content});