toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final connectionLimit = this.connectionLimit;
  final networkUrl = this.networkUrl;
  final projectIdOrNum = this.projectIdOrNum;
  return {
    'connectionLimit': ?connectionLimit,
    'networkUrl': ?networkUrl,
    'projectIdOrNum': ?projectIdOrNum,
  };
}