toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final estimatedShardDuration = this.estimatedShardDuration;
final numShards = this.numShards;
final shardIndex = this.shardIndex;
final testTargetsForShard = this.testTargetsForShard;
return {
'estimatedShardDuration': ?estimatedShardDuration,
'numShards': ?numShards,
'shardIndex': ?shardIndex,
'testTargetsForShard': ?testTargetsForShard,
};
}