toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final centroidId = this.centroidId;
final clusterRadius = this.clusterRadius;
final clusterSize = this.clusterSize;
return {
'centroidId': ?centroidId,
'clusterRadius': ?clusterRadius,
'clusterSize': ?clusterSize,
};
}