toJson method
Implementation
Map<String, dynamic> toJson() {
final json = <String, dynamic>{};
if (this.url != null) {
json[r'url'] = this.url;
} else {
json[r'url'] = null;
}
if (this.b64Json != null) {
json[r'b64_json'] = this.b64Json;
} else {
json[r'b64_json'] = null;
}
return json;
}