customHeader method
Implementation
Widget customHeader() {
return Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
"Subscribed Users",
style: TextStyle(
fontSize: 28,
fontWeight: FontWeight.w600,
color: ColorHelper.black02,
),
),
],
),
);
}