ServerLogParams.fromJson constructor

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

Implementation

factory ServerLogParams.fromJson(
    JsonDecoder jsonDecoder, String jsonPath, Object? json) {
  json ??= {};
  if (json is Map) {
    ServerLogEntry entry;
    if (json.containsKey('entry')) {
      entry = ServerLogEntry.fromJson(
          jsonDecoder, '$jsonPath.entry', json['entry']);
    } else {
      throw jsonDecoder.mismatch(jsonPath, 'entry');
    }
    return ServerLogParams(entry);
  } else {
    throw jsonDecoder.mismatch(jsonPath, 'server.log params', json);
  }
}