Annotation constructor
      
      Annotation({ 
    
- required int pageNumber,
Creates a new instance of the Annotation class.
Implementation
Annotation({required int pageNumber}) : assert(pageNumber > 0) {
  _pageNumber = pageNumber;
}