contactKey property
MKey?
get
contactKey
override
Implementation
MKey? get contactKey => this.gifteeKeys!.firstOrNull();
set
contactKey
(MKey? contactKey)
override
Implementation
set contactKey(MKey? contactKey) {
this.gifteeKeys = {
...?gifteeKeys,
if (contactKey != null) contactKey,
}.toList();
}