getSeeSoVersion method

Future<String?> getSeeSoVersion()

Retrieves the version of SeeSo for the current platform.

This method returns the version of the SeeSo eye-tracking module for the specific platform (iOS/Android). The version information provides insights into the current SeeSo release being used.

Returns a Future that completes with the version string or null if there is an issue retrieving the version.

Implementation

Future<String?> getSeeSoVersion() {
  return SeeSoPlatform.instance.getSeeSoVersion();
}