getPropertyAsync static method

dynamic getPropertyAsync(
  1. String property
)

Fetch a property asynchronously that can be used to build your own user agent string.

Implementation

static dynamic getPropertyAsync(String property) async {
  await init();
  return _properties![property];
}