toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final existingBucket = this.existingBucket;
final existingFilestore = this.existingFilestore;
final existingLustre = this.existingLustre;
final newBucket = this.newBucket;
final newFilestore = this.newFilestore;
final newLustre = this.newLustre;
return {
'existingBucket': ?existingBucket,
'existingFilestore': ?existingFilestore,
'existingLustre': ?existingLustre,
'newBucket': ?newBucket,
'newFilestore': ?newFilestore,
'newLustre': ?newLustre,
};
}