ImageVideo constructor

const ImageVideo({
  1. Key? key,
  2. double? width,
  3. double? height,
  4. required String path,
})

Implementation

const ImageVideo(
    {Key? key,
    this.width,
    this.height,
    required this.path,
    })
    : super(key: key);