toValue method

String toValue()

Implementation

String toValue() {
  switch (this) {
    case AccountType.team:
      return 'Team';
    case AccountType.enterpriseDirectory:
      return 'EnterpriseDirectory';
    case AccountType.enterpriseLWA:
      return 'EnterpriseLWA';
    case AccountType.enterpriseOIDC:
      return 'EnterpriseOIDC';
  }
}