BannerCreationParams constructor

BannerCreationParams({
  1. required String name,
  2. BannerSize? size,
  3. AATKitBannerType type = AATKitBannerType.sticky,
  4. int id = -1,
  5. ContentAlignment? contentAlignment,
})

Implementation

BannerCreationParams({
  required this.name,
  this.size,
  this.type = AATKitBannerType.sticky,
  this.id = -1,
  this.contentAlignment,
});