resizeModeToImageRepeat function

ImageRepeat resizeModeToImageRepeat(
  1. String? value
)

Implementation

ImageRepeat resizeModeToImageRepeat(String? value) {
  if (value == 'no-repeat') {
    return ImageRepeat.noRepeat;
  } else if (value == 'repeat-x') {
    return ImageRepeat.repeatX;
  } else if (value == 'repeat-y') {
    return ImageRepeat.repeatY;
  }
  return ImageRepeat.repeat;
}