DocumentQualityThreshold.fromJson constructor

DocumentQualityThreshold.fromJson(
  1. Map<String, dynamic> json
)

Implementation

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