toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final displayName = this.displayName;
final exposedScore = this.exposedScore;
final name = this.name;
final resource = this.resource;
final resourceType = this.resourceType;
final resourceValue = this.resourceValue;
final resourceValueConfigsUsed = this.resourceValueConfigsUsed;
return {
'displayName': ?displayName,
'exposedScore': ?exposedScore,
'name': ?name,
'resource': ?resource,
'resourceType': ?resourceType,
'resourceValue': ?resourceValue,
'resourceValueConfigsUsed': ?resourceValueConfigsUsed,
};
}