AdmobWidget constructor Null safety

const AdmobWidget(
  1. {Key? key,
  2. int height = 100,
  3. int width = 0,
  4. bool isBox = false}
)

Implementation

const AdmobWidget({
  Key? key,

  /// the height for a banner
  this.height = 100,

  /// the width for the banner
  this.width = 0,

  /// the isBox
  this.isBox = false,
}) : super(key: key);