toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final aliases = this.aliases;
  final allowCors = this.allowCors;
  final name = this.name;
  final target = this.target;
  return {
    'aliases': ?aliases,
    'allowCors': ?allowCors,
    'name': ?name,
    'target': ?target,
  };
}