getBrowserInfo static method

Future<String> getBrowserInfo()

Retrieves browser-related information from the native SDK.

  • Returns: A Future<String> containing browser details.

Implementation

static Future<String> getBrowserInfo() async {
  return await _channel.invokeMethod('getBrowserInfo', {});
}