PlaceholderChild constructor

const PlaceholderChild({
  1. Key? key,
  2. EdgeInsetsGeometry padding = const EdgeInsets.all(100),
  3. Widget? child,
  4. String text = 'There is no data',
})

Implementation

const PlaceholderChild(
    {super.key,
    this.padding = const EdgeInsets.all(100),
    this.child,
    this.text = 'There is no data'});