LogBorderSytle.singleBorder constructor

const LogBorderSytle.singleBorder({
  1. String topRightBorder = '┓',
  2. String topLeftBorder = '┏',
  3. String traceBorder = '─',
  4. String middleRightBorder = '┃',
  5. String middleLeftBorder = '┃',
  6. String connectorLeftBorder = '┣',
  7. String connectorRightBorder = '┫',
  8. String bottomRightBorder = '┛',
  9. String bottomLeftBorder = '┗',
})

Implementation

const LogBorderSytle.singleBorder({
  this.topRightBorder = '┓',
  this.topLeftBorder = '┏',
  this.traceBorder = '─',
  this.middleRightBorder = '┃',
  this.middleLeftBorder = '┃',
  this.connectorLeftBorder = '┣',
  this.connectorRightBorder = '┫',
  this.bottomRightBorder = '┛',
  this.bottomLeftBorder = '┗',
});