danger method

ButtonStyle danger()

Implementation

ButtonStyle danger() {
  return copyWith(
    backgroundColor: WidgetStateProperty.all(
      Color(0xFFdc3545),
    ), // Bootstrap danger red
    foregroundColor: WidgetStateProperty.all(Colors.white),
    shape: WidgetStateProperty.all(
      RoundedRectangleBorder(borderRadius: BorderRadius.circular(4.0)),
    ),
  );
}