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