info method

ButtonStyle info()

Implementation

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