YesOrNo.fromMap constructor
Implementation
factory YesOrNo.fromMap(Map<String, dynamic> json) => YesOrNo(
svgWidth: json["svgWidth"],
svgHeight: json["svgHeight"],
outerContainerWidth: json["outerContainerWidth"],
outerContainerHeight: json["outerContainerHeight"],
fontSize: json["fontSize"],
circleFontIndicatorSize: json["circleFontIndicatorSize"],
customSvgSelected: json["customSvgSelected"],
customSvgUnSelected: json["customSvgUnSelected"],
);