RecognizeTextRequest.fromJson constructor

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

Implementation

factory RecognizeTextRequest.fromJson(Map<String, dynamic> json) {
  return RecognizeTextRequest(
    imagePath: json['imagePath'],
  );
}