GromoreBannerWidget constructor

const GromoreBannerWidget({
  1. Key? key,
  2. required String codeId,
  3. int width = 300,
  4. int height = 150,
  5. bool show = true,
})

Implementation

const GromoreBannerWidget({
  Key? key,
  required this.codeId,
  this.width = 300,
  this.height = 150,
  this.show = true,
}) : super(key: key);