buildHeader method
Implementation
Widget buildHeader(ThemeData theme, {String? buttonTitle}) {
return SizedBox(
child: Row(
children: [
Expanded(child: buildTitleSection(theme)),
if (widget.onAdd != null) buildAddButton(title: buttonTitle),
],
),
);
}