repeat property
ImageRepeat
get
repeat
How to repeat this image if it doesn't fill its layout bounds.
Implementation
ImageRepeat get repeat => _repeat;
set
repeat
(ImageRepeat value)
Implementation
set repeat(ImageRepeat value) {
if (value == _repeat) {
return;
}
_repeat = value;
markNeedsPaint();
}