static void fireAndForgetAsync(Future<void> Function() operation, {String? operationName}) { safeAsync(() async { await operation(); }, operationName: operationName); }