ImageStyle constructor
      const
      ImageStyle({ 
    
- double? opacity,
- String? filter,
- ObjectFit fit = ObjectFit.contain,
- String? title,
- ImageDecoding? decoding,
Creates a new ImageStyle instance.
All parameters are optional and can be combined as needed for custom styling.
Implementation
const ImageStyle({
  this.opacity,
  this.filter,
  this.fit = ObjectFit.contain,
  this.title,
  this.decoding,
});