DescribeJobResponse.fromJson constructor

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

Implementation

factory DescribeJobResponse.fromJson(Map<String, dynamic> json) {
  return DescribeJobResponse(
    documentSource: json['documentSource'] as String?,
    job: json['job'] != null
        ? Job.fromJson(json['job'] as Map<String, dynamic>)
        : null,
  );
}