toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final businessOwners = this.businessOwners;
  final criticality = this.criticality;
  final developerOwners = this.developerOwners;
  final environment = this.environment;
  final operatorOwners = this.operatorOwners;
  return {
    'businessOwners': ?businessOwners,
    'criticality': ?criticality,
    'developerOwners': ?developerOwners,
    'environment': ?environment,
    'operatorOwners': ?operatorOwners,
  };
}