toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attestationSource = this.attestationSource;
  final configBasedBuildRequired = this.configBasedBuildRequired;
  final customConstraints = this.customConstraints;
  final trustedBuilder = this.trustedBuilder;
  final trustedSourceRepoPatterns = this.trustedSourceRepoPatterns;
  return {
    'attestationSource': ?attestationSource,
    'configBasedBuildRequired': ?configBasedBuildRequired,
    'customConstraints': ?customConstraints,
    'trustedBuilder': ?trustedBuilder,
    'trustedSourceRepoPatterns': ?trustedSourceRepoPatterns,
  };
}