LatencyCriteria.fromJson constructor

LatencyCriteria.fromJson(
  1. Map json_
)

Implementation

LatencyCriteria.fromJson(core.Map json_)
    : this(
        threshold: json_.containsKey('threshold')
            ? json_['threshold'] as core.String
            : null,
      );