SmfErrorPlaceholder constructor

const SmfErrorPlaceholder({
  1. Key? key,
  2. String? message,
  3. IconData? icon,
  4. String? buttonText,
  5. VoidCallback? onPressed,
})

Implementation

const SmfErrorPlaceholder({
  Key? key,
  this.message,
  this.icon,
  this.buttonText,
  this.onPressed,
}) : super(key: key);