IaContainer constructor

const IaContainer({
  1. Key? key,
  2. double? height = 120.0,
  3. double? width,
  4. Color? color1,
  5. Color? color2,
  6. String title = 'Title',
  7. Color? textcolor,
  8. String subtitle = 'Subtitle',
  9. Color? subtitlecolor,
  10. IaContainerCallback? onTap,
  11. EdgeInsetsGeometry? padding,
})

Implementation

const IaContainer({
  Key? key,
  this.height = 120.0,
  this.width,
  this.color1,
  this.color2,
  this.title = 'Title',
  this.textcolor,
  this.subtitle = 'Subtitle',
  this.subtitlecolor,
  this.onTap,
  this.padding,
}) : super(key: key);