|  | @@ -10,12 +10,12 @@ import 'quote.dart';
 | 
	
		
			
			| 10 | 10 |  import 'scope.dart';
 | 
	
		
			
			| 11 | 11 |  import 'theme.dart';
 | 
	
		
			
			| 12 | 12 |  
 | 
	
		
			
			| 13 |  | -/// Non-scrollable read-only view of a Notus rich text document.
 | 
	
		
			
			|  | 13 | +/// Non-scrollable read-only view of Notus rich text documents.
 | 
	
		
			
			| 14 | 14 |  class ZefyrView extends StatefulWidget {
 | 
	
		
			
			| 15 | 15 |    final NotusDocument document;
 | 
	
		
			
			| 16 | 16 |    final ZefyrImageDelegate imageDelegate;
 | 
	
		
			
			| 17 | 17 |  
 | 
	
		
			
			| 18 |  | -  const ZefyrView({Key key, this.document, this.imageDelegate})
 | 
	
		
			
			|  | 18 | +  const ZefyrView({Key key, @required this.document, this.imageDelegate})
 | 
	
		
			
			| 19 | 19 |        : super(key: key);
 | 
	
		
			
			| 20 | 20 |  
 | 
	
		
			
			| 21 | 21 |    @override
 |