userAgent property

Future<String> get userAgent

Returns a User-Agent header to put in the network requests.

Implementation

Future<String> get userAgent async {
  _userAgent ??= await WebUtils.userAgent;
  return _userAgent!;
}