ServerLogParams.fromJson constructor
ServerLogParams.fromJson(
- JsonDecoder jsonDecoder,
- String jsonPath,
- 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);
}
}