ImageRepeat repeat

How to repeat this image if it doesn't fill its layout bounds.

Source

ImageRepeat get repeat => _repeat;
void repeat=(ImageRepeat value)

Source

set repeat (ImageRepeat value) {
  if (value == _repeat)
    return;
  _repeat = value;
  markNeedsPaint();
}