button static method

TextStyle? button(
  1. BuildContext context
)

Implementation

static TextStyle? button(BuildContext context){
  return Theme.of(context).textTheme.button!.copyWith(
      letterSpacing: 1
  );
}