lessThan method

bool lessThan(
  1. Normal other
)

Implementation

bool lessThan(Normal other) => other.value
    .match((l) => false, (r) => _value.match((l) => false, (v) => v < r));