KeyValStmt constructor

KeyValStmt({
  1. required MathExpr key,
  2. required MathExpr value,
})

Constructs the pair with a given key.

Implementation

KeyValStmt({required MathExpr this.key, required this.value});