toJson method
Implementation
@override
Map<String, dynamic>? toJson(ElevatedButtonThemeData? value) {
if (value == null) return null;
return <String, dynamic>{
'style': const NullableButtonStyleConverter().toJson(value.style),
};
throw 'Json_Unsuported_Value';
}