1. not_initialized_non_nullable_instance_field Non-nullable instance field ‘{0}’ must be initialized. Description The analyzer produces this diagnostic(not_initialized_non_nullable_instance_field)when a field is declared and has all these characteristics: Has a type that’s potentially non-nullable Doesn’t have an initializer Isn’t marked as late Examples The following code produces this diagnost..