toPdfFontStyle method

FontStyle toPdfFontStyle()

Implementation

pw.FontStyle toPdfFontStyle() {
  switch (this) {
    case FontStyle.normal:
      return pw.FontStyle.normal;
    case FontStyle.italic:
      return pw.FontStyle.italic;
  }
}