FrontendConfig.fromJson constructor
Implementation
factory FrontendConfig.fromJson(Map<String, dynamic> json) => FrontendConfig(
gender: json["gender"],
thumbnail: json["thumbnail"],
canvas: json["canvas"],
tilt: json["tilt"] == null ? null : Tilt.fromJson(json["tilt"]),
faceBbox: json["faceBbox"] == null
? null
: FaceBbox.fromJson(json["faceBbox"]),
);