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