setCryptKey method

AnalyticsConfigBuilder setCryptKey(
  1. String cryptKey
)

Implementation

AnalyticsConfigBuilder setCryptKey(String cryptKey) {
  if (cryptKey.isEmpty) throw ArgumentError("CryptKey must be provided");
  this.cryptKey = cryptKey;
  return this;
}