isInRange method

bool isInRange(
  1. num ini,
  2. num fim
)

Implementation

bool isInRange(num ini, num fim) => this >= ini && this <= fim;