parsedKeyName method

String parsedKeyName(
  1. BuildContext context
)

Implementation

String parsedKeyName(BuildContext context) {
  final quotation = styleScheme(context).quotation ?? const JsonQuotation();
  if (quotation.isEmpty) return keyName;
  return '${quotation.leftQuote}$keyName${quotation.rightQuote}';
}