toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final connectionId = this.connectionId;
final fileFormat = this.fileFormat;
final storageUri = this.storageUri;
final tableFormat = this.tableFormat;
return {
'connectionId': ?connectionId,
'fileFormat': ?fileFormat,
'storageUri': ?storageUri,
'tableFormat': ?tableFormat,
};
}