PumaRow constructor

PumaRow({
  1. Key? key,
  2. Widget? child,
  3. Widget? startDecorator,
  4. Widget? endDecorator,
})

Implementation

PumaRow({
  Key? key,
  this.child,
  this.startDecorator,
  this.endDecorator,
}) : super(key: key);