styleCelulaCinza method

Style styleCelulaCinza({
  1. required Workbook workbook,
})

Implementation

Style styleCelulaCinza({required Workbook workbook}) {
  Style style = workbook.styles.add('linha');
  style.backColor = '#EAE7E6';
  style.fontColor = '#000000';
  style.italic = true;
  style.bold = false;
  return style;
}