sessionheading method

Row sessionheading()

Implementation

pw.Row sessionheading() {
  return pw.Row(children: [
    pw.Container(
        width: 350,
        alignment: pw.Alignment.topLeft,
        padding: const pw.EdgeInsets.all(5),
        child: pw.Text(Constant.metadata,
            style: pw.TextStyle(
              color: PdfColors.white,
              fontSize: 10,
              fontWeight: pw.FontWeight.bold,
            ))),
    pw.VerticalDivider(color: PdfColors.white),
    pw.Container(
        alignment: pw.Alignment.topLeft,
        padding: const pw.EdgeInsets.all(5),
        child: pw.Text(Constant.sessiondetails,
            style: pw.TextStyle(
              color: PdfColors.white,
              fontSize: 10,
              fontWeight: pw.FontWeight.bold,
            ))),
  ]);
}