static String? toKey(String? source, [String? property]) { if (source == null) return null; property ??= 'value'; return ('$source.$property').toLowerCase(); }