toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final accessTokens = this.accessTokens;
  final apiKeys = this.apiKeys;
  final apiProducts = this.apiProducts;
  final asns = this.asns;
  final botReasons = this.botReasons;
  final developerApps = this.developerApps;
  final developers = this.developers;
  final httpMethods = this.httpMethods;
  final ipAddressRanges = this.ipAddressRanges;
  final regionCodes = this.regionCodes;
  final userAgents = this.userAgents;
  return {
    'accessTokens': ?accessTokens,
    'apiKeys': ?apiKeys,
    'apiProducts': ?apiProducts,
    'asns': ?asns,
    'botReasons': ?botReasons,
    'developerApps': ?developerApps,
    'developers': ?developers,
    'httpMethods': ?httpMethods,
    'ipAddressRanges': ?ipAddressRanges,
    'regionCodes': ?regionCodes,
    'userAgents': ?userAgents,
  };
}