TImage constructor

const TImage({
  1. Key? key,
  2. String? url,
  3. double size = 80,
  4. String placeholder = 'package:te_widgets/assets/icons/no_image.png',
  5. Color? backgroundColor,
  6. double padding = .0,
})

Implementation

const TImage({
  super.key,
  this.url,
  this.size = 80,
  this.placeholder = 'package:te_widgets/assets/icons/no_image.png',
  this.backgroundColor,
  this.padding = .0,
});