toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final account = this.account;
  final accountKeySecret = this.accountKeySecret;
  final authenticationType = this.authenticationType;
  final azureAuthorityHost = this.azureAuthorityHost;
  final azureTenantId = this.azureTenantId;
  final clientId = this.clientId;
  final clientSecret = this.clientSecret;
  final endpoint = this.endpoint;
  final sasTokenSecret = this.sasTokenSecret;
  final technologyType = this.technologyType;
  return {
    'account': ?account,
    'accountKeySecret': ?accountKeySecret,
    'authenticationType': ?authenticationType,
    'azureAuthorityHost': ?azureAuthorityHost,
    'azureTenantId': ?azureTenantId,
    'clientId': ?clientId,
    'clientSecret': ?clientSecret,
    'endpoint': ?endpoint,
    'sasTokenSecret': ?sasTokenSecret,
    'technologyType': ?technologyType,
  };
}