toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final apiKeySecret = this.apiKeySecret;
  final apiKeyString = this.apiKeyString;
  final httpElementLocation = this.httpElementLocation;
  final name = this.name;
  return {
    'apiKeySecret': ?apiKeySecret,
    'apiKeyString': ?apiKeyString,
    'httpElementLocation': ?httpElementLocation,
    'name': ?name,
  };
}