TImage constructor

const TImage({
  1. Key? key,
  2. ImageProvider<Object>? picture,
  3. bool stretch = false,
  4. bool proportional = false,
  5. bool center = false,
  6. bool transparent = false,
  7. double? width,
  8. double? height,
  9. VoidCallback? onClick,
})

Implementation

const TImage({
  super.key,
  this.picture,
  this.stretch = false,
  this.proportional = false,
  this.center = false,
  this.transparent = false,
  this.width,
  this.height,
  this.onClick,
});