Request constructor

Request(
  1. Map<String, dynamic> params, {
  2. dynamic method = Method.POST,
})

Implementation

Request(Map<String, dynamic> params, {method = Method.POST})
    : super(params, method: method);