toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final attachmentId = this.attachmentId;
  final displayName = this.displayName;
  final excludedFolders = this.excludedFolders;
  final excludedProjects = this.excludedProjects;
  final name = this.name;
  final securityPolicyId = this.securityPolicyId;
  final shortName = this.shortName;
  return {
    'attachmentId': ?attachmentId,
    'displayName': ?displayName,
    'excludedFolders': ?excludedFolders,
    'excludedProjects': ?excludedProjects,
    'name': ?name,
    'securityPolicyId': ?securityPolicyId,
    'shortName': ?shortName,
  };
}