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