equals method

bool equals(
  1. SLFloat other
)

Implementation

bool equals(SLFloat other) =>
    (value - other.value).abs() < double.minPositive;