toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final apiKey = this.apiKey;
  final secretKey = this.secretKey;
  final enabled = this.enabled;
  return {
    'ApiKey': apiKey,
    'SecretKey': secretKey,
    if (enabled != null) 'Enabled': enabled,
  };
}