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