AnalyticsSendTimingParams.fromJson constructor

AnalyticsSendTimingParams.fromJson(
  1. JsonDecoder jsonDecoder,
  2. String jsonPath,
  3. Object? json
)

Implementation

factory AnalyticsSendTimingParams.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    String event;
    if (json.containsKey('event')) {
      event = jsonDecoder.decodeString('$jsonPath.event', json['event']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'event');
    }
    int millis;
    if (json.containsKey('millis')) {
      millis = jsonDecoder.decodeInt('$jsonPath.millis', json['millis']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'millis');
    }
    return AnalyticsSendTimingParams(event, millis);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'analytics.sendTiming params', json);
  }
}