toJson method

Map<String, dynamic> toJson()

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,
  };
}