propertyTypesMap top-level constant

Map<String, int> const propertyTypesMap

Implementation

const Map<String, int> propertyTypesMap = {
  'unknown': PropertyTypes.unknown,
  'posX': PropertyTypes.posX,
  'posY': PropertyTypes.posY,
  'scaleX': PropertyTypes.scaleX,
  'scaleY': PropertyTypes.scaleY,
  'rotation': PropertyTypes.rotation,
  'opacity': PropertyTypes.opacity,
  'drawOrder': PropertyTypes.drawOrder,
  'length': PropertyTypes.length,
  'vertices': PropertyTypes.imageVertices,
  'strength': PropertyTypes.constraintStrength,
  'trigger': PropertyTypes.trigger,
  'intValue': PropertyTypes.intProperty,
  'floatValue': PropertyTypes.floatProperty,
  'stringValue': PropertyTypes.stringProperty,
  'boolValue': PropertyTypes.booleanProperty,
  'isCollisionEnabled': PropertyTypes.collisionEnabled,
  'sequence': PropertyTypes.sequence,
  'activeChild': PropertyTypes.activeChildIndex,
  'pathVertices': PropertyTypes.pathVertices,
  'fillColor': PropertyTypes.fillColor,
  'fillGradient': PropertyTypes.fillGradient,
  'fillRadial': PropertyTypes.fillRadial,
  'strokeColor': PropertyTypes.strokeColor,
  'strokeGradient': PropertyTypes.strokeGradient,
  'strokeRadial': PropertyTypes.strokeRadial,
  'strokeWidth': PropertyTypes.strokeWidth,
  'strokeOpacity': PropertyTypes.strokeOpacity,
  'fillOpacity': PropertyTypes.fillOpacity,
  'width': PropertyTypes.shapeWidth,
  'height': PropertyTypes.shapeHeight,
  'cornerRadius': PropertyTypes.cornerRadius,
  'innerRadius': PropertyTypes.innerRadius,
  'strokeStart': PropertyTypes.strokeStart,
  'strokeEnd': PropertyTypes.strokeEnd,
  'strokeOffset': PropertyTypes.strokeOffset,
  'color': PropertyTypes.color,
  'offsetX': PropertyTypes.offsetX,
  'offsetY': PropertyTypes.offsetY,
  'blurX': PropertyTypes.blurX,
  'blurY': PropertyTypes.blurY
};