StackViewCell constructor

StackViewCell({
  1. required List<Widget> children,
  2. bool showIcon = false,
  3. EdgeInsetsGeometry? padding,
  4. void onTap()?,
  5. bool isAsync = false,
})

Implementation

StackViewCell({
  required this.children,
  this.showIcon = false,
  this.padding,
  this.onTap,
  this.isAsync = false,
});