toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attributeMap = this.attributeMap;
  final droppedAttributesCount = this.droppedAttributesCount;
  return {
    'attributeMap': ?attributeMap,
    'droppedAttributesCount': ?droppedAttributesCount,
  };
}