StartDocumentTextDetectionResponse.fromJson constructor

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

Implementation

factory StartDocumentTextDetectionResponse.fromJson(
    Map<String, dynamic> json) {
  return StartDocumentTextDetectionResponse(
    jobId: json['JobId'] as String?,
  );
}