toParagraph method

String toParagraph([
  1. bool addDash = false
])

Implementation

String toParagraph([bool addDash = false]) {
  return addDash ? "-\t$this" : "\t$this";
}