RenderContext constructor

const RenderContext({
  1. required String path,
  2. Map<String, String> query = const {},
  3. Map<String, String> headers = const {},
  4. Map<String, String> cookies = const {},
})

Implementation

const RenderContext({
  required this.path,
  this.query = const {},
  this.headers = const {},
  this.cookies = const {},
});