JsonLogic.empty constructor

JsonLogic.empty()

Creates the Jsonlogic class with no operations. The operations needs to manually added via the add function.

Implementation

JsonLogic.empty() {
  _ops = <String, Operator>{};
}