LatencyPercentile.fromJson constructor

LatencyPercentile.fromJson(
  1. Map json_
)

Implementation

LatencyPercentile.fromJson(core.Map json_)
  : this(
      latencyMicros: json_['latencyMicros'] as core.String?,
      percent: json_['percent'] as core.int?,
    );