HttpAction constructor

HttpAction({
  1. required String url,
  2. HttpAuthorization? auth,
  3. String? confirmationUrl,
  4. List<HttpActionHeader>? headers,
})

Implementation

HttpAction({
  required this.url,
  this.auth,
  this.confirmationUrl,
  this.headers,
});