configuration property
The configuration to pass to the BoxPainter obtained from the decoration, when painting.
The ImageConfiguration.size field is ignored (and replaced by the size of the referenceBox, at paint time).
Implementation
ImageConfiguration get configuration => _configuration;
Implementation
set configuration(ImageConfiguration value) {
if (value == _configuration) {
return;
}
_configuration = value;
controller.markNeedsPaint();
}