toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final clientId = this.clientId;
  final clientSecret = this.clientSecret;
  final tenantId = this.tenantId;
  return {
    'clientId': ?clientId,
    'clientSecret': ?clientSecret,
    'tenantId': ?tenantId,
  };
}