MLDocumentSkewCorrectionResult.fromJson constructor

MLDocumentSkewCorrectionResult.fromJson(
  1. Map json
)

Implementation

factory MLDocumentSkewCorrectionResult.fromJson(Map<dynamic, dynamic> json) {
  return MLDocumentSkewCorrectionResult._(
    bytes: json['bytes'],
    resultCode: json['resultCode'],
  );
}