contactKey property

MKey? contactKey
override

Implementation

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

Implementation

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