toTextButton method

TextButton toTextButton(
  1. String title, {
  2. TextStyle? style,
})

Implementation

TextButton toTextButton(String title, {TextStyle? style}) {
  return TextButton(
    onPressed: this,
    child: Text(
      title,
      style: style,
    ),
  );
}