list property

List<Digit> list
final

A list of all the digits, ordered 0 through 9.

Implementation

static final List<Digit> list = List<Digit>.unmodifiable(
    <Digit>[zero, one, two, three, four, five, six, seven, eight, nine]);