fromJson method
Implementation
@override
TextButtonThemeData? fromJson(Map<String, dynamic>? json) {
if (json == null) return null;
return TextButtonThemeData(
style: const NullableButtonStyleConverter().fromJson(
json['style'],
),
);
}