setAccountId method

AnalyticsConfigBuilder setAccountId(
  1. String accountId
)

Implementation

AnalyticsConfigBuilder setAccountId(String accountId) {
  if (accountId.isEmpty) throw ArgumentError("AccountId must be provided");
  this.accountId = accountId;
  return this;
}