CSDocumentosCopyResult.fromJson constructor

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

Implementation

factory CSDocumentosCopyResult.fromJson(Map<String, dynamic> json) {
  return CSDocumentosCopyResult(
    json['documentType'],
    json['sessionId'],
  );
}