InlineBannerImageConfig constructor

const InlineBannerImageConfig({
  1. required String url,
  2. ImagePlaceholder? placeholder,
  3. BoxFit boxFit = BoxFit.cover,
  4. double aspectRatio = 16 / 9,
  5. double height = 200,
  6. double cornerRadius = 12,
})

Implementation

const InlineBannerImageConfig({
  required this.url,
  this.placeholder,
  this.boxFit = BoxFit.cover,
  this.aspectRatio = 16 / 9,
  this.height = 200,
  this.cornerRadius = 12,
});