$ShufflePushReadMetrics.fromJson constructor

$ShufflePushReadMetrics.fromJson(
  1. Map json_
)

Implementation

$ShufflePushReadMetrics.fromJson(core.Map json_)
  : this(
      corruptMergedBlockChunks:
          json_['corruptMergedBlockChunks'] as core.String?,
      localMergedBlocksFetched:
          json_['localMergedBlocksFetched'] as core.String?,
      localMergedBytesRead: json_['localMergedBytesRead'] as core.String?,
      localMergedChunksFetched:
          json_['localMergedChunksFetched'] as core.String?,
      mergedFetchFallbackCount:
          json_['mergedFetchFallbackCount'] as core.String?,
      remoteMergedBlocksFetched:
          json_['remoteMergedBlocksFetched'] as core.String?,
      remoteMergedBytesRead: json_['remoteMergedBytesRead'] as core.String?,
      remoteMergedChunksFetched:
          json_['remoteMergedChunksFetched'] as core.String?,
      remoteMergedReqsDuration:
          json_['remoteMergedReqsDuration'] as core.String?,
    );