getSecondFractions method

int getSecondFractions(
  1. int i
)

Gets the ith entry of secondFractions or 0 if it does not exist.

Implementation

int getSecondFractions(int i) =>
    i < secondFractions.length ? secondFractions[i] : 0;