RetryContext constructor

const RetryContext({
  1. required String baseUrl,
  2. required String path,
  3. required YKNetworkingMethod method,
  4. YKNetworkingContentType? contentType,
  5. Map<String, dynamic> params = const {},
})

Implementation

const RetryContext({
  required this.baseUrl,
  required this.path,
  required this.method,
  this.contentType,
  this.params = const {},
});