The late keyword By declaring a non-nullable late variable, we promise that it will be non-null at runtime, and Dart helps us with some compile-time guarantees.
Read moreWhat is a late variable Dart?
late modifier can be used while declaring a non-nullable variable that’s initialized after its declaration . Declaration of variables that will be initialize later is done using late modifier.3 Nis 2021
Read more