ImageStyle constructor

const ImageStyle({
  1. double? opacity,
  2. String? filter,
  3. ObjectFit fit = ObjectFit.contain,
  4. String? title,
  5. ImageDecoding? decoding,
})

Implementation

const ImageStyle({
  this.opacity,
  this.filter,
  this.fit = ObjectFit.contain,
  this.title,
  this.decoding,
});