newAtKey method
Implementation
AtKey newAtKey(int ttr, String key, String? sharedWith) {
var atKey = AtKey()
..metadata = Metadata()
..metadata!.ttr = ttr
// ..metadata.ttl = MixedConstants.maxTTL
..metadata!.ccd = true
..key = key
..sharedWith = sharedWith
..sharedBy = AtEventNotificationListener().currentAtSign;
return atKey;
}