applicationName method Null safety

LDConfigBuilder applicationName(
  1. String applicationName
)

A friendly name for the application where the LaunchDarkly SDK is running.

This can be specified as any string value as long as it only uses the following characters: ASCII letters, ASCII digits, spaces, period, hyphen, underscore. A string containing any other characters will be ignored.

Example: 'My Cool Application'

Implementation

LDConfigBuilder applicationName(String applicationName) {
  this._applicationName = applicationName;
  return this;
}