contactKey property

MKey? contactKey
override

Implementation

MKey? get contactKey => this.gifteeKeys!.firstOrNull();
void contactKey=(MKey? contactKey)
override

Implementation

set contactKey(MKey? contactKey) {
  this.gifteeKeys = {
    ...?gifteeKeys,
    if (contactKey != null) contactKey,
  }.toList();
}