wrapDoubleAccentedQuotes method

String wrapDoubleAccentedQuotes({
  1. bool quoteEmpty = false,
})

Return a string wrapped in “accented quotes”

Note that empty strings will still be wrapped: '“”'

Implementation

String wrapDoubleAccentedQuotes({bool quoteEmpty = false}) => isEmpty
    ? quoteEmpty
          ? '$accentedDoubleQuoteOpening$accentedDoubleQuoteClosing'
          : ''
    : '$accentedDoubleQuoteOpening$this$accentedDoubleQuoteClosing';