coefficientOf static method

int coefficientOf(
  1. Int32List poly,
  2. int degree
)

Implementation

static int coefficientOf(Int32List poly, int degree) => poly[poly.length - 1 - degree];