GetJobDocumentResponse.fromJson constructor

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

Implementation

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