FatooraServiceCsrResponse constructor

FatooraServiceCsrResponse({
  1. required String csrOutputFileName,
  2. required String keyOutputFileName,
  3. required FatooraServiceResponse response,
})

Creates a new instance of FatooraServiceCsrResponse.

  • csrOutputFileName: The file name for the CSR output.
  • keyOutputFileName: The file name for the key output.
  • response: The associated FatooraServiceResponse object.

Implementation

FatooraServiceCsrResponse({
  required this.csrOutputFileName,
  required this.keyOutputFileName,
  required this.response,
});