rmd property Null safety

NormalOperation rmd
final

Implementation

static final NormalOperation rmd = NormalOperation.intOnly(
    intCalc: (Model m) {
      try {
        BigInt xi = m.xI;
        BigInt yi = m.yI;
        m.popSetResultXI = yi.remainder(xi);
        // ignore: avoid_catches_without_on_clauses
      } catch (e) {
        throw CalculatorError(0);
      }
    },
    name: 'RMD');