jsonWithHeader static method
Implementation
static Response jsonWithHeader(
dynamic jsonData, {
int statusCode = HttpStatus.ok,
Map<String, String> headers = const {},
}) =>
Response(
data: jsonData,
responseType: ResponseType.json,
httpStatusCode: statusCode,
headers: headers,
);