toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allowInsecure = this.allowInsecure;
final gcs = this.gcs;
final localPath = this.localPath;
final remote = this.remote;
return {
'allowInsecure': ?allowInsecure,
'gcs': ?gcs,
'localPath': ?localPath,
'remote': ?remote,
};
}