styleButtonFilled method
Implementation
ButtonStyle styleButtonFilled(double anchoFijoBoton) => ButtonStyle(
backgroundColor: WidgetStatePropertyAll(backgroundButton),
padding: padding != null ? WidgetStatePropertyAll(padding) : null,
minimumSize: WidgetStatePropertyAll(
Size(anchoBoton ?? anchoFijoBoton, maxHeight)),
shape: WidgetStatePropertyAll(
RoundedRectangleBorder(borderRadius: BorderRadius.circular(10))),
);