InAppWidget constructor

const InAppWidget({
  1. Key? key,
  2. required Template template,
  3. double? height,
  4. EdgeInsets? padding,
})

Implementation

const InAppWidget({
  super.key,
  required this.template,
  this.height,
  this.padding,
});