wrapDoubleAccentedQuotes method
Returns this string wrapped in accented double quotes.
If the string is empty, returns the empty quote pair if quoteEmpty
is true, otherwise returns an empty string.
Audited: 2026-06-12 11:26 EDT
Implementation
@useResult
String wrapDoubleAccentedQuotes({bool quoteEmpty = false}) {
if (isEmpty) {
return quoteEmpty ? '$accentedDoubleQuoteOpening$accentedDoubleQuoteClosing' : '';
}
return '$accentedDoubleQuoteOpening$this$accentedDoubleQuoteClosing';
}