toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final export = this.export;
final exportFull = this.exportFull;
final instructions = this.instructions;
final ipAddress = this.ipAddress;
final protocol = this.protocol;
return {
'export': ?export,
'exportFull': ?exportFull,
'instructions': ?instructions,
'ipAddress': ?ipAddress,
'protocol': ?protocol,
};
}