toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final allConnectionStrings = this.allConnectionStrings;
  final dedicated = this.dedicated;
  final high = this.high;
  final low = this.low;
  final medium = this.medium;
  final profiles = this.profiles;
  return {
    'allConnectionStrings': ?allConnectionStrings,
    'dedicated': ?dedicated,
    'high': ?high,
    'low': ?low,
    'medium': ?medium,
    'profiles': ?profiles,
  };
}