tile static method Null safety
Implementation
static Widget tile(MapEntry<String, FutureOr<void> Function()?> entry) =>
ListTile(
title: Text(entry.key),
trailing: const Icon(UnSymbols.chevronForward),
onTap: entry.value,
);