loop static method

Loop loop([
  1. int? additionalIterations
])

Delivers an animated GIF that contains additional loops of the GIF.

The total number of iterations is the number of additional loops plus one.

You can also specify the loop effect without a numeric value to instruct it to loop the GIF infinitely. Receives int returns Effect

Implementation

static Loop loop([int? additionalIterations]) {
  return Loop(additionalIterations);
}