Context constructor

Context(
  1. String path, {
  2. bool isDirectly = false,
  3. dynamic body,
  4. DateTime? at,
})

Implementation

Context(this.path, {this.isDirectly = false, this.body, DateTime? at})
    : at = at ?? DateTime.now();