DocumentPage constructor

const DocumentPage({
  1. Key? key,
  2. @QueryParam('path') String? id,
  3. @QueryParam() String? global,
})

Implementation

const DocumentPage({
  super.key,
  @QueryParam('path') this.id,
  @QueryParam() String? global,
}) : assert(id != null, 'id cant be null');