BlockforestRequestDetails constructor

const BlockforestRequestDetails({
  1. required int id,
  2. required String pathParams,
  3. Map<String, String> header = const {},
  4. HTTPRequestType requestType = HTTPRequestType.get,
  5. Object? body,
})

Constructs a new BlockforestRequestDetails instance with the specified parameters.

Implementation

const BlockforestRequestDetails(
    {required this.id,
    required this.pathParams,
    this.header = const {},
    this.requestType = HTTPRequestType.get,
    this.body});