RequestVerification constructor

RequestVerification({
  1. required HttpMethod method,
  2. required String path,
  3. Map<String, dynamic>? body,
  4. Map<String, String>? headers,
})

Implementation

RequestVerification({
  required this.method,
  required this.path,
  this.body,
  this.headers,
});