toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final associatedFindings = this.associatedFindings;
  final attackSteps = this.attackSteps;
  final displayName = this.displayName;
  final resource = this.resource;
  final resourceType = this.resourceType;
  final uuid = this.uuid;
  return {
    'associatedFindings': ?associatedFindings,
    'attackSteps': ?attackSteps,
    'displayName': ?displayName,
    'resource': ?resource,
    'resourceType': ?resourceType,
    'uuid': ?uuid,
  };
}