From 49f98652d123bd68861716d4056a63ffbf93d17e Mon Sep 17 00:00:00 2001 From: Felipe Sales Date: Fri, 20 Jan 2023 22:42:45 -0300 Subject: [PATCH] chore: avoid unnecessary interpolation --- lib/home/home_page.dart | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/home/home_page.dart b/lib/home/home_page.dart index 9e44c8f..6102340 100644 --- a/lib/home/home_page.dart +++ b/lib/home/home_page.dart @@ -69,8 +69,7 @@ class _HomePageState extends State { final title = quiz.title; final questions = quiz.questions; final image = quiz.image; - final completed = - '${questionAnswered}/${questionLength}'; + final completed = '$questionAnswered/$questionLength'; return QuizCardWidget( image: image,