textButtonStyle static method

dynamic textButtonStyle(
  1. Color color
)

Implementation

static textButtonStyle(Color color) => TextButtonThemeData(
        style: ButtonStyle(
      foregroundColor: WidgetStateProperty.all<Color>(color),
    ));