toString method
A string representation of this object.
Some classes have a default textual representation,
often paired with a static parse
function (like int.parse).
These classes will provide the textual representation as
their string representation.
Other classes have no meaningful textual representation
that a program will care about.
Such classes will typically override toString
to provide
useful information when inspecting the object,
mainly for debugging or logging.
Implementation
@override
String toString() =>
'MmEnvironmentConfigServiceSettings[siteURL=$siteURL, listenAddress=$listenAddress, connectionSecurity=$connectionSecurity, tLSCertFile=$tLSCertFile, tLSKeyFile=$tLSKeyFile, useLetsEncrypt=$useLetsEncrypt, letsEncryptCertificateCacheFile=$letsEncryptCertificateCacheFile, forward80To443=$forward80To443, readTimeout=$readTimeout, writeTimeout=$writeTimeout, maximumLoginAttempts=$maximumLoginAttempts, segmentDeveloperKey=$segmentDeveloperKey, googleDeveloperKey=$googleDeveloperKey, enableOAuthServiceProvider=$enableOAuthServiceProvider, enableIncomingWebhooks=$enableIncomingWebhooks, enableOutgoingWebhooks=$enableOutgoingWebhooks, enableCommands=$enableCommands, enableOnlyAdminIntegrations=$enableOnlyAdminIntegrations, enablePostUsernameOverride=$enablePostUsernameOverride, enablePostIconOverride=$enablePostIconOverride, enableTesting=$enableTesting, enableDeveloper=$enableDeveloper, enableSecurityFixAlert=$enableSecurityFixAlert, enableInsecureOutgoingConnections=$enableInsecureOutgoingConnections, enableMultifactorAuthentication=$enableMultifactorAuthentication, enforceMultifactorAuthentication=$enforceMultifactorAuthentication, allowCorsFrom=$allowCorsFrom, sessionLengthWebInDays=$sessionLengthWebInDays, sessionLengthMobileInDays=$sessionLengthMobileInDays, sessionLengthSSOInDays=$sessionLengthSSOInDays, sessionCacheInMinutes=$sessionCacheInMinutes, websocketSecurePort=$websocketSecurePort, websocketPort=$websocketPort, webserverMode=$webserverMode, enableCustomEmoji=$enableCustomEmoji, restrictCustomEmojiCreation=$restrictCustomEmojiCreation]';