CellStyle.header constructor
CellStyle.header()
Implementation
factory CellStyle.header() => CellStyle(
decoration: BoxDecoration(
color: Colors.lightGreen,
border: Border(
bottom: BorderSide(
color: Colors.grey.withOpacity(0.5),
),
right: BorderSide(
color: Colors.grey.withOpacity(0.5),
),
),
),
);