MdImage constructor

const MdImage({
  1. required String url,
  2. required String alt,
  3. double? width,
  4. double? height,
})

Implementation

const MdImage({
  required this.url,
  required this.alt,
  this.width,
  this.height,
});