ResponsiveImage constructor

const ResponsiveImage({
  1. Key? key,
  2. required String url,
  3. double? height,
  4. double? width,
  5. BoxFit? fit,
})

Implementation

const ResponsiveImage({
  super.key,
  required this.url,
  this.height,
  this.width,
  this.fit,
});