toJson method
Implementation
@override
String? toJson(FloatingActionButtonAnimator? value) {
if (value == null) return null;
if (value == FloatingActionButtonAnimator.scaling) {
return 'scaling';
}
throw 'Json_Unsuported_Value';
}
@override
String? toJson(FloatingActionButtonAnimator? value) {
if (value == null) return null;
if (value == FloatingActionButtonAnimator.scaling) {
return 'scaling';
}
throw 'Json_Unsuported_Value';
}