nonNullableFieldComments property
A relation with non-nullable field type in base class.
Generated override should return List<Comment> (non-nullable)
and use super.nonNullableFieldComments directly (no coalescing needed).
Implementation
@override
List<Comment> get nonNullableFieldComments {
if (relationLoaded('nonNullableFieldComments')) {
return getRelationList<Comment>('nonNullableFieldComments');
}
return super.nonNullableFieldComments;
}