There's the input_utils.dart with the InputUtils class that has 3 static functions: hideKeyboard(), isMouseConnected() and unFocus() and then there is another file: utils.dart that has the class Utils that has the same 3 static functions plus another one: benchmark(String name, Function() test).
Is there a reason why these are duplicated like this?
There's the
input_utils.dart
with theInputUtils
class that has 3 static functions: hideKeyboard(), isMouseConnected() and unFocus() and then there is another file:utils.dart
that has the classUtils
that has the same 3 static functions plus another one: benchmark(String name, Function() test).Is there a reason why these are duplicated like this?