effectiveKey property

String get effectiveKey

Implementation

String get effectiveKey =>
    key ??
    name?.toLowerCase().replaceAll(' ', '_').replaceAll("/", ".") ??
    "no_key";