toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final arn = this.arn;
  final additionalStagingLabelsToDownload =
      this.additionalStagingLabelsToDownload;
  return {
    if (arn != null) 'ARN': arn,
    if (additionalStagingLabelsToDownload != null)
      'AdditionalStagingLabelsToDownload': additionalStagingLabelsToDownload,
  };
}