toString method

  1. @override
String toString()
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 'CoreEventProperties(message: $message, name: $name, method: $method, connected: $connected, namespace: $namespace, network: $network, caipNetworkId: $caipNetworkId, explorerId: $explorerId, walletRank: $walletRank, displayIndex: $displayIndex, view: $view, provider: $provider, platform: $platform, trace: $trace, topic: $topic, correlation_id: $correlation_id, client_id: $client_id, direction: $direction, userAgent: $userAgent, token: $token, amount: $amount, hash: $hash, address: $address, project_id: $project_id, cursor: $cursor, exchange: $exchange, configuration: $configuration, currentPayment: $currentPayment, source: $source, headless: $headless, reconnect: $reconnect, link: $link, linkType: $linkType, showWallets: $showWallets, siweConfig: $siweConfig, themeMode: $themeMode, networks: $networks, defaultNetwork: $defaultNetwork, chainImages: $chainImages, metadata: $metadata, accountType: $accountType, query: $query, certified: $certified, installed: $installed)';
}