inputDot method

dynamic inputDot()

Implementation

inputDot() {
  if (!(new RegExp(r"\.")).hasMatch(displayValue)) {
    this.setState(() {
      displayValue = displayValue + '.';
      waitingForOperand = false;
    });
  }
}