Response.noContent constructor

Response.noContent({
  1. Map<String, dynamic>? headers,
})

Represents a 204 response.

Implementation

Response.noContent({Map<String, dynamic>? headers})
    : this(HttpStatus.noContent, headers, null);