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