BaseServiceRequestParams constructor
const
BaseServiceRequestParams({
- required Map<
String, String> headers, - required RequestMethod requestMethod,
- required int requestID,
- required ServiceReponseEncoding responseEncoding,
- required List<
int> ? bodyBytes, - required String? bodyString,
- String? path,
- List<
int> ? successStatusCodes, - List<
int> ? errorStatusCodes, - BlockchainNetwork? network,
Implementation
const BaseServiceRequestParams({
required this.headers,
required this.requestMethod,
required this.requestID,
required this.responseEncoding,
required this.bodyBytes,
required this.bodyString,
this.path,
this.successStatusCodes,
this.errorStatusCodes,
this.network,
});