author property

MKey? author
override

Implementation

MKey? get author {
  /// Find the one not linked to an org... hacky
  return contactKeys.orEmpty().where((k) {
    return k.mtype.artifactId?.toLowerCase().contains("contact") == true;
  }).firstOr();
}