closeQuoteFor function

String closeQuoteFor(
  1. String openQuote
)

Implementation

String closeQuoteFor(String openQuote) {
  return const {
    '"': '"',
    "'": "'",
    '"""': '"""',
    "'''": "'''",
    'r"': '"',
    "r'": "'",
    'r"""': '"""',
    "r'''": "'''",
    '\$': '\$',
  }[openQuote]!;
}