initFastDevelopOfRespData function

void initFastDevelopOfRespData(
  1. ProcessingExtend? processingExtend,
  2. RespDataJson? respDataJson
)

Implementation

void initFastDevelopOfRespData(
    ProcessingExtend? processingExtend, RespDataJson? respDataJson) {
  if (processingExtend != null) RespData.processingExtend = processingExtend;
  if (respDataJson != null) RespData.responseJson = respDataJson;
}