toJson method
Converts a SeccompProfile instance to JSON data.
Implementation
Map<String, Object> toJson() {
final jsonData = <String, Object>{};
final tempLocalhostProfile = localhostProfile;
final tempType = type;
if (tempLocalhostProfile != null) {
jsonData['localhostProfile'] = tempLocalhostProfile;
}
jsonData['type'] = tempType;
return jsonData;
}