fromJson method
Implementation
@override
FloatingActionButtonAnimator? fromJson(String? json) {
if (json == null) return null;
switch (json) {
case 'scaling':
return FloatingActionButtonAnimator.scaling;
}
throw 'Unsuported_Json_Value';
}