isAtLeast method

bool isAtLeast(
  1. BurtLogLevel other
)

Whether this level is at least as severe as another level.

Implementation

bool isAtLeast(BurtLogLevel other) =>
  value <= other.value;