RecupStatus constructor

const RecupStatus({
  1. Key? key,
  2. required Widget child,
  3. EdgeInsetsGeometry? padding = const EdgeInsets.symmetric(horizontal: 15, vertical: 2),
  4. Color? color,
})

Implementation

const RecupStatus({
  Key? key,
  required this.child,
  this.padding = const EdgeInsets.symmetric(horizontal: 15, vertical: 2),
  this.color,
}) : super(key: key);