From e59912e16ead3bbff741dc41aa2760d9b1c7e1e1 Mon Sep 17 00:00:00 2001 From: mertalev <101130780+mertalev@users.noreply.github.com> Date: Sat, 9 Nov 2024 00:38:07 -0500 Subject: [PATCH] linting --- mobile/lib/utils/throttle.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mobile/lib/utils/throttle.dart b/mobile/lib/utils/throttle.dart index 3aa907e19f..bc0dcf9e2f 100644 --- a/mobile/lib/utils/throttle.dart +++ b/mobile/lib/utils/throttle.dart @@ -1,5 +1,3 @@ -import 'dart:async'; - import 'package:flutter_hooks/flutter_hooks.dart'; /// Throttles function calls with the [interval] provided. @@ -17,6 +15,8 @@ class Throttler { _lastActionTime = DateTime.now(); return response; } + + return null; } void dispose() {