applyToMaterialTheme method
Implementation
@override
Widget applyToMaterialTheme(BuildContext context, Widget child) {
return Theme(
data: Theme.of(context).copyWith(
inputDecorationTheme: inputDecorationTheme,
),
child: child,
);
}