RequestAction constructor

RequestAction({
  1. String? endpoint,
  2. String? method,
  3. String? deleteKey,
  4. Map<String, dynamic>? payload,
})

Implementation

RequestAction({
  this.endpoint,
  this.method,
  this.deleteKey,
  this.payload,
});