toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final followingBatchSamplePercentage = this.followingBatchSamplePercentage;
final initialBatchSamplePercentage = this.initialBatchSamplePercentage;
final sampleStrategy = this.sampleStrategy;
return {
'followingBatchSamplePercentage': ?followingBatchSamplePercentage,
'initialBatchSamplePercentage': ?initialBatchSamplePercentage,
'sampleStrategy': ?sampleStrategy,
};
}