DescribeCollectionResponse.fromJson constructor
Implementation
factory DescribeCollectionResponse.fromJson(Map<String, dynamic> json) {
return DescribeCollectionResponse(
collectionARN: json['CollectionARN'] as String?,
creationTimestamp: timeStampFromJson(json['CreationTimestamp']),
faceCount: json['FaceCount'] as int?,
faceModelVersion: json['FaceModelVersion'] as String?,
);
}