DocumentQualityThreshold.fromJson constructor
Implementation
factory DocumentQualityThreshold.fromJson(Map<String, dynamic> json) =>
DocumentQualityThreshold(
symbolQuality: (json["symbolQuality"] as num).toDouble(),
symbolRatio: (json["symbolRatio"] as num).toDouble(),
);