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() {