KrakenResizeImage constructor

KrakenResizeImage(
  1. ImageProvider<Object> imageProvider, {
  2. int? width,
  3. int? height,
  4. BoxFit? objectFit,
})

Implementation

KrakenResizeImage(
  ImageProvider<Object> imageProvider, {
  int? width,
  int? height,
  this.objectFit,
}) : super(imageProvider, width: width, height: height);