toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final asn = this.asn;
  final csp = this.csp;
  final state = this.state;
  final updateTime = this.updateTime;
  return {
    'asn': ?asn,
    'csp': ?csp,
    'state': ?state,
    'updateTime': ?updateTime,
  };
}