0
 if (result & 1 == 1) {
    result = ~result;
  }
  var result1 = (result >> 1) * 0.00001;
  lList.add(result1);
} while (index < len);
the project is in . Dart in flutter
error: "The argument type 'double' can’t be Assigned to the Parameter type 'int'
Why are you doing binary operation and multiplying by 0.00001? What is the purpose of the code?
– Julio Henrique Bitencourt