toJson method
Implementation
Map<String, dynamic> toJson() {
final s3Bucket = this.s3Bucket;
final s3KeyPrefix = this.s3KeyPrefix;
return {
if (s3Bucket != null) 'S3Bucket': s3Bucket,
if (s3KeyPrefix != null) 'S3KeyPrefix': s3KeyPrefix,
};
}