RenderResult constructor

const RenderResult({
  1. required String html,
  2. String head = '',
  3. String? state,
  4. int statusCode = 200,
  5. String? redirectTo,
})

Implementation

const RenderResult({
  required this.html,
  this.head = '',
  this.state,
  this.statusCode = 200,
  this.redirectTo,
});