EntityRecognizerDocuments.fromJson constructor

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

Implementation

factory EntityRecognizerDocuments.fromJson(Map<String, dynamic> json) {
  return EntityRecognizerDocuments(
    s3Uri: json['S3Uri'] as String,
  );
}