toPdfTableBorder method

TableBorder toPdfTableBorder()

Converts the TableBorder to a pw.TableBorder.

Implementation

pw.TableBorder toPdfTableBorder() => pw.TableBorder(
      horizontalInside: horizontalInside.toPdfBorderSide(),
      verticalInside: verticalInside.toPdfBorderSide(),
      top: top.toPdfBorderSide(),
      right: right.toPdfBorderSide(),
      bottom: bottom.toPdfBorderSide(),
      left: left.toPdfBorderSide(),
    );