OutlinedButtonThemeModifier constructor

const OutlinedButtonThemeModifier({
  1. Key? key,
  2. Widget? child,
  3. Key? modifierKey,
  4. required OutlinedButtonThemeData data,
})

Create a OutlinedButtonTheme.

The data parameter must not be null.

Implementation

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