From a25abb659b470e540de78a94bcbb416bbe9e6da6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABl=20Chiotti?= <44336112+maelchiotti@users.noreply.github.com> Date: Wed, 25 Dec 2024 23:45:21 +0100 Subject: [PATCH] [325] fix: remove null --- lib/common/preferences/enums/font.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/preferences/enums/font.dart b/lib/common/preferences/enums/font.dart index 3b5c08bc..782e5e7c 100644 --- a/lib/common/preferences/enums/font.dart +++ b/lib/common/preferences/enums/font.dart @@ -21,7 +21,7 @@ enum Font { ; /// The name of the font family. - final String? familyName; + final String familyName; /// The name of the font family to display. final String displayName;