BigTip constructor

const BigTip({
  1. Key? key,
  2. Widget? child,
  3. double childSpace = 16,
  4. double subtitleSpace = 8,
  5. EdgeInsets padding = const EdgeInsets.all(32),
  6. Widget? title,
  7. Widget? subtitle,
  8. Widget? action,
})

Implementation

const BigTip({
  super.key,
  this.child,
  this.childSpace = 16,
  this.subtitleSpace = 8,
  this.padding = const EdgeInsets.all(32),
  this.title,
  this.subtitle,
  this.action,
}) : assert(
        child != null || title != null || subtitle != null,
        'One of the these parameters should not be null',
      );