AdImageView constructor

AdImageView(
  1. {EdgeInsets? padding,
  2. EdgeInsets? margin,
  3. double? size,
  4. AdDecoration? decoration,
  5. double? elevation,
  6. Color? elevationColor}
)

Implementation

AdImageView({
  EdgeInsets? padding,
  EdgeInsets? margin,
  double? size,
  AdDecoration? decoration,
  double? elevation,
  Color? elevationColor,
}) : super(
        viewType: 'image_view',
        padding: padding,
        margin: margin,
        decoration: decoration,
        width: size ?? 50,
        height: size ?? 50,
        elevation: elevation,
        elevationColor: elevationColor,
      );