toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final clientId = this.clientId;
  final clientSecret = this.clientSecret;
  final enabled = this.enabled;
  return {
    'ClientId': clientId,
    'ClientSecret': clientSecret,
    if (enabled != null) 'Enabled': enabled,
  };
}