FilledButtonTheme constructor

const FilledButtonTheme(
  1. {Key? key,
  2. required FilledButtonThemeData data,
  3. required Widget child}
)

Create a FilledButtonTheme.

Implementation

const FilledButtonTheme({
  super.key,
  required this.data,
  required super.child,
});