initialiseDoubleInputs method

dynamic initialiseDoubleInputs(
  1. dynamic controller
)

Implementation

initialiseDoubleInputs(var controller) {
    for (var getValue in doubleInputList!) {
      //here controller will check if input value is found on state machine or not if found then it will added values to the list
      if (controller.findInput<double>(getValue) != null) {
        var values = controller.findInput<double>(getValue) as SMINumber;
        doubleInputValues![getValue] = values;
      }
    }
}