wrapSingleAccentedQuotes method
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';