sanitizationExtraKeywords constant

Set<String> const sanitizationExtraKeywords

Returns all identifiers that must be renamed when appearing as fields inside an object. Most of them are used by Dart PythonFFI internals.

Implementation

static const Set<String> sanitizationExtraKeywords = <String>{
  "from",
  "getFunction",
  "toDartObject",
  "hasAttribute",
  "getAttributeRaw",
  "getAttribute",
  "setAttributeRaw",
  "setAttribute",
  "toString",
  "hashCode",
  "noSuchMethod",
  "verify",
  "initializer",
  "finalizer",
  "platform",
  "reference",
  "debugDump",
};