configuration property
UIImageConfiguration?
get
configuration
Configuration support
This describes the configuration of the image. Depending on which type of image, the configuration might be different. Symbol images will always have a UIImageSymbolConfiguration, even if you give it another type of configuration (it will merge the trait info from the other configuration into its current configuration). Images start off with an unspecified configuration but can be modified by the methods below. The preferred ways of adding configurations for displaying images is to specify them on the image view, but it is possible to modify images with a more specific configuration.
Implementation
UIImageConfiguration? get configuration {
final _ret = _objc_msgSend_1x359cv(this.ref.pointer, _sel_configuration);
return _ret.address == 0 ? null : UIImageConfiguration.castFromPointer(_ret, retain: true, release: true);
}