FcEmpty constructor

const FcEmpty({
  1. Key? key,
  2. Widget? icon,
  3. String? title,
  4. String? content,
  5. EdgeInsetsGeometry padding = EdgeInsets.zero,
})

Implementation

const FcEmpty({
  Key? key,
  this.icon,
  this.title,
  this.content,
  this.padding = EdgeInsets.zero,
}) : super(key: key);