toJsonForProtocol method
Returns a JSON structure of the model, optimized for Protocol communication.
Implementation
@override
Map<String, dynamic> toJsonForProtocol() {
return {
if (id != null) 'id': id,
'logSettings': logSettings.toJsonForProtocol(),
'logSettingsOverrides': logSettingsOverrides.toJson(
valueToJson: (v) => v.toJsonForProtocol()),
'logServiceCalls': logServiceCalls,
'logMalformedCalls': logMalformedCalls,
};
}