toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
if (device != null) {
_json[r'device'] = device;
}
_json[r'applications'] = applications;
if (engine != null) {
_json[r'engine'] = engine;
}
if (vpn != null) {
_json[r'vpn'] = vpn;
}
return _json;
}