NotFound constructor

NotFound({
  1. required String message,
  2. String? assetImage,
  3. String? networkImageUrl,
  4. Color? color,
  5. double? imageHeight,
  6. double? imageWidth,
  7. bool? showImage,
})

Implementation

NotFound({
  required this.message,
  this.assetImage,
  this.networkImageUrl,
  this.color,
  this.imageHeight,
  this.imageWidth, this.showImage,
});