NetImage constructor

NetImage({
  1. required String url,
  2. bool isLight = false,
  3. BoxFit fit = BoxFit.cover,
  4. double? width,
  5. double? height,
})

Implementation

NetImage(
    {required this.url,
    this.isLight = false,
    this.fit = BoxFit.cover,
    this.width,
    this.height});