Get constructor

const Get({
  1. String path = "/",
  2. Map<String, String> headers = const {},
})

Implementation

const Get({String path: "/", Map<String, String> headers: const {}})
    : super(HttpMethod.Get, path: path, headers: headers);