toString method
inherited
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() {
return '''
otpCode: ${otpCode},
selectedLanguageCode: ${selectedLanguageCode},
isDarkMode: ${isDarkMode},
useMaterialYouTheme: ${useMaterialYouTheme},
isLoggedIn: ${isLoggedIn},
isGuestUser: ${isGuestUser},
playerId: ${playerId},
oneSignalAPIKey: ${oneSignalAPIKey},
oneSignalRestAPIKey: ${oneSignalRestAPIKey},
isLoading: ${isLoading},
searchList: ${searchList},
token: ${token},
userId: ${userId},
userFirstName: ${userFirstName},
userLastName: ${userLastName},
userName: ${userName},
displayName: ${displayName},
hometown: ${hometown},
userEmail: ${userEmail},
latitude: ${latitude},
longitude: ${longitude},
address: ${address},
aboutMeDescription: ${aboutMeDescription},
selectedGender: ${selectedGender},
selectedRelationShip: ${selectedRelationShip},
userContactNumber: ${userContactNumber},
country: ${country},
state: ${state},
city: ${city},
accountType: ${accountType},
userType: ${userType},
userProfileImage: ${userProfileImage},
dob: ${dob},
totalReview: ${totalReview},
followers: ${followers},
following: ${following},
createdAt: ${createdAt},
isOnline: ${isOnline},
isPrivateAccount: ${isPrivateAccount},
dontAllowToOthersToWatchMyEvents: ${dontAllowToOthersToWatchMyEvents},
nearByMeOfNewListingNearby: ${nearByMeOfNewListingNearby},
messagePhotosLikesNewFans: ${messagePhotosLikesNewFans},
hideFromSearch: ${hideFromSearch},
hideEvents: ${hideEvents},
msgOff: ${msgOff},
isProUser: ${isProUser},
totalClaimBusiness: ${totalClaimBusiness},
instagramLink: ${instagramLink},
tiktokLink: ${tiktokLink},
spotifyLink: ${spotifyLink},
twitterLink: ${twitterLink},
businessId: ${businessId},
loginType: ${loginType},
isMaxScroll: ${isMaxScroll},
isLocationPermissionGranted: ${isLocationPermissionGranted},
viewMoreTap: ${viewMoreTap},
selectedTypeCategoryIndex: ${selectedTypeCategoryIndex},
selectedListingIndex: ${selectedListingIndex},
selectedId: ${selectedId},
musicAffinityIdList: ${musicAffinityIdList},
uid: ${uid},
interestIdList: ${interestIdList},
currentPassword: ${currentPassword},
isFavLoading: ${isFavLoading},
musicList: ${musicList},
bookingList: ${bookingList},
selectedMusicId: ${selectedMusicId},
headerIndex: ${headerIndex},
feedHeaderIndex: ${feedHeaderIndex},
feedSelectedMusicId: ${feedSelectedMusicId},
isListingFilter: ${isListingFilter},
inquiryEmail: ${inquiryEmail},
eventFeedResponse: ${eventFeedResponse},
listingList: ${listingList},
eventList: ${eventList},
listCities: ${listCities},
eventCities: ${eventCities},
admobAppId: ${admobAppId},
admobBannerId: ${admobBannerId},
admobInterstitialId: ${admobInterstitialId},
countryCode: ${countryCode},
currencySymbol: ${currencySymbol},
currencyCode: ${currencyCode},
currencyPosition: ${currencyPosition},
distanceType: ${distanceType},
distanceRadius: ${distanceRadius},
termsAndCondition: ${termsAndCondition},
privacyPolicy: ${privacyPolicy},
aboutUS: ${aboutUS},
nabitInstagramCommunity: ${nabitInstagramCommunity},
nabitFaceBookCommunity: ${nabitFaceBookCommunity},
nabitYoutubeCommunity: ${nabitYoutubeCommunity},
nabitTwitterCommunity: ${nabitTwitterCommunity},
nabitTikTokCommunity: ${nabitTikTokCommunity},
ourWebSiteURL: ${ourWebSiteURL}
''';
}