compose static method
Collapses matrices into a single matrix in application order.
Implementation
static ColorMatrix compose(Iterable<ColorMatrix> matrices) {
var combined = identity;
for (final matrix in matrices) {
combined = combined.followedBy(matrix);
}
return combined;
}