FaceBbox.fromJson constructor
x , y ,faceWidth ,faceHeight contains integer values
Implementation
factory FaceBbox.fromJson(Map<String, dynamic> json) => FaceBbox(
x: json["x"],
y: json["y"],
faceWidth: json["faceWidth"],
faceHeight: json["faceHeight"],
);