BaseServiceRequestParams constructor

const BaseServiceRequestParams({
  1. required Map<String, String> headers,
  2. required RequestServiceType type,
  3. required int requestID,
  4. List<int>? successStatusCodes,
  5. List<int>? errorStatusCodes,
})

Implementation

const BaseServiceRequestParams(
    {required this.headers,
    required this.type,
    required this.requestID,
    this.successStatusCodes,
    this.errorStatusCodes});