GlareDetectionConfiguration.fromJson constructor
Implementation
factory GlareDetectionConfiguration.fromJson(Map<String, dynamic> json) =>
GlareDetectionConfiguration(
glareDetectionThreshold: json.containsKey("glareDetectionThreshold")
? (json["glareDetectionThreshold"] as num).toDouble()
: 0.5,
);