ActionButton constructor

const ActionButton({
  1. Key? key,
  2. required FormAction action,
  3. Widget? child,
  4. required void onPressed(
    1. FormAction
    ),
})

Creates an Action Button

This uses a RaisedButton.

Implementation

const ActionButton(
    {Key? key, required this.action, this.child, required this.onPressed})
    : super(key: key);