EmptyWidget constructor
      
      EmptyWidget({})
     
    
    
Implementation
EmptyWidget({
  required Key key,
  String? status,
  String? buttonText,
  bool? isShowImage,
  Widget? imageEmpty,
  VoidCallback? onTap,
})  : _status = status ?? '',
      _buttonText = buttonText ?? '',
      _isShowImage = isShowImage ?? true,
      _imageEmpty = imageEmpty ?? Icon(Icons.image),
      _callback = onTap,
      super(key: key);