toJson method

Map<String, dynamic> toJson()

Implementation

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