wrapSingleAccentedQuotes method

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

Return a string wrapped in ‘accented quotes’

Note that empty strings will still be wrapped: '‘’'

Implementation

String wrapSingleAccentedQuotes({bool quoteEmpty = false}) => isEmpty
    ? quoteEmpty
          ? '$accentedQuoteOpening$accentedQuoteClosing'
          : ''
    : '$accentedQuoteOpening$this$accentedQuoteClosing';