ContainerButton constructor

ContainerButton({
  1. Key? key,
  2. Widget? body,
  3. Widget? action,
  4. Color? bodyColor,
  5. EdgeInsets? margin,
  6. EdgeInsets? padding,
})

Implementation

ContainerButton(
    {Key? key,
    this.body,
    this.action,
    this.bodyColor,
    this.margin,
    this.padding})
    : super(key: key);