Skip to content

EachOps

extensionEachOpsonnum

Extension methods for constructing Each values from num.

Properties

dozen extension no setter

Eachgetdozen

Creates an Each of this value in dozens.

Available on num, provided by the EachOps extension

Implementation
dart
Each get dozen => Each.dozen(this);

each extension no setter

Eachgeteach

Creates an Each of this value as individual items.

Available on num, provided by the EachOps extension

Implementation
dart
Each get each => Each.each(this);

greatGross extension no setter

EachgetgreatGross

Creates an Each of this value in great gross.

Available on num, provided by the EachOps extension

Implementation
dart
Each get greatGross => Each.greatGross(this);

gross extension no setter

Eachgetgross

Creates an Each of this value in gross.

Available on num, provided by the EachOps extension

Implementation
dart
Each get gross => Each.gross(this);

score extension no setter

Eachgetscore

Creates an Each of this value in scores.

Available on num, provided by the EachOps extension

Implementation
dart
Each get score => Each.score(this);