escapedName property

  1. @Deprecated('Use escapedNameFor with the current dialect')
String escapedName

name, but wrapped in double quotes to escape it as a a same identifier.

In the past, this getter only used to add double-quotes when that is really needed (for instance because name is also a reserved keyword). For performance reasons, we unconditionally escape names now.

Implementation

@Deprecated('Use escapedNameFor with the current dialect')
String get escapedName => '"$name"';