OperationNum.from constructor

OperationNum.from(
  1. int val
)

Constructs an OperationNum from the provided int.

Implementation

OperationNum.from(int val) : super(BigInt.from(val));