DocumentPage constructor

const DocumentPage({
  1. Key? key,
  2. String? id,
})

Implementation

const DocumentPage({
  super.key,
  this.id,
}) : assert(id != null, 'id cant be null');