toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final s3BucketName = this.s3BucketName;
  final s3KeyPrefix = this.s3KeyPrefix;
  return {
    if (s3BucketName != null) 's3BucketName': s3BucketName,
    if (s3KeyPrefix != null) 's3KeyPrefix': s3KeyPrefix,
  };
}