RightButton constructor

const RightButton({
  1. Color color = Colors.blue,
  2. required String label,
  3. required VoidCallback onPressed,
})

Place button on the right.

Please use it in the list.

Implementation

const RightButton(
    {this.color = Colors.blue, required this.label, required this.onPressed});