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