SoapResponse constructor

SoapResponse({
  1. required String action,
  2. required int statusCode,
  3. required dynamic body,
  4. required Map requestParams,
})

Implementation

SoapResponse({
  required this.action,
  required this.statusCode,
  required this.body,
  required this.requestParams,
});