toJson method
Implementation
@override
Map<String, dynamic>? toJson(ToolbarOptions? value) {
if (value == null) return null;
return {
'copy': value.copy,
'cut': value.cut,
'paste': value.paste,
'selectAll': value.selectAll,
};
throw 'Json_Unsuported_Value';
}