styleTextButton method
Implementation
ButtonStyle styleTextButton({
Color? color,
Color? textColor
}) {
return TextButton.styleFrom(
backgroundColor: color,
foregroundColor: textColor
);
}
ButtonStyle styleTextButton({
Color? color,
Color? textColor
}) {
return TextButton.styleFrom(
backgroundColor: color,
foregroundColor: textColor
);
}