SafaehStatusBody constructor

const SafaehStatusBody({
  1. Key? key,
  2. required Widget message,
  3. IconData? icon,
  4. Widget? action,
  5. bool busy = false,
  6. double? progress,
  7. EdgeInsetsGeometry padding = const EdgeInsets.symmetric(horizontal: 24, vertical: 32),
})

Implementation

const SafaehStatusBody({
  super.key,
  required this.message,
  this.icon,
  this.action,
  this.busy = false,
  this.progress,
  this.padding = const EdgeInsets.symmetric(horizontal: 24, vertical: 32),
});