Following initailization of a final variable to null the variable should be able to allow initialization once more to real value instead of throwing Cannot assign a value to the final variable error.
Example :
final variable = null
variable = true #throws an error, it should not
Following initailization of a final variable to null the variable should be able to allow initialization once more to real value instead of throwing
Cannot assign a value to the final variableerror.Example :