Dart: LateInitializationError: Field 'x' has not been initialized
late promises the compiler that a non nullable field will hold a value before anything reads it, and that promise was broken. Reading it during initState before the assignment, or on a code path where the assignment is conditional, throws at the point of the read rather than where the field was declared.
Quick fix
Read the commands before running them. Anything that restarts a service, deletes data or changes permissions should be tried on a non-production system first.
// Assign before anything can read it
late final ScrollController _controller;
@override
void initState() {
super.initState();
_controller = ScrollController();
}
// A late field with an initialiser is evaluated on first read, which is safer
late final client = ApiClient(baseUrl: config.baseUrl);
// If it might genuinely be absent, it is nullable, not late
Timer? _timer;
_timer?.cancel();
// Ask before reading, when the order is not under your control
if (_controllerInitialised) _controller.jumpTo(0);
// The build method can run before an async initialiser completes:
// hold the future and use FutureBuilder rather than a late field
late final Future<Config> _config = loadConfig();
How to diagnose Dart errors
Dart errors are dominated by null safety at runtime and version solving at build time. The null-check operator failure (! on a null) is Dart's equivalent of a NullPointerException and almost always means an assumption about initialisation order was wrong. Pub version solving failures are dependency-graph conflicts and are solved by reading the constraint that pub reports as unsatisfiable, not by deleting the lockfile.
If the quick fix above does not resolve it, work through these steps. They apply to this whole class of error, not just to this one message, which is usually what saves the time.
- Read the full
pub getoutput. It names the two packages whose constraints conflict. Deletingpubspec.lockhides that information without fixing anything. - Replace
!with a null check plus a meaningful error, or withlate finalwhere initialisation genuinely happens before first use. The crash location is where the assumption broke. - Run
flutter doctor -vbefore debugging any build failure. It catches missing Android SDK components and licence acceptance, which produce misleading Gradle errors. - Use
dart pub deps --style=treeto see the resolved graph and find which transitive dependency is pinning an old version. - Clear derived state with
flutter cleanonly after you have read the error. It resets the symptom and loses the evidence.
Tools worth reaching for
flutter doctor -vdart pub depsdart analyzeflutter run --verbose
Authoritative references
Primary documentation for this error, worth reading before applying any fix in production.
Related Dart errors
- Dart: Null check operator used on a null valueThe ! null-assertion was applied to an expression that was null at runtime, throwing in…
- Dart: type 'Null' is not a subtype of type 'String' in type castA cast met a null at runtime, and with sound null safety the failure lands on the cast rather…
- Flutter: A RenderFlex overflowed by 42 pixels on the rightA Row or Column laid out children that want more space than the parent offered, so the excess…
- Flutter: No Material widget foundWidgets such as TextField, ListTile and InkWell paint ink on the nearest Material ancestor…
- Flutter: setState() called after dispose()An asynchronous callback finished after its widget left the tree, so the State it wants to…
- Flutter: setState() or markNeedsBuild() called during buildSomething changed state while the framework was already building the tree, so it is being…
- Flutter: the current Dart SDK version is X but package requires YA package's environment constraint in pubspec.yaml excludes the Dart SDK bundled with your…
- Flutter: Vertical viewport was given unbounded heightA scrolling widget was placed somewhere with no height to fill, typically inside a Column or…
Browse other categories
- HTTP 494xx client errors, 5xx server errors, redirects, headers and protocol problems.
- JavaScript 42npm resolution, async pitfalls, hydration, memory limits and runtime type…
- Database 41Connections, deadlocks, constraints, replication and memory limits.
- AI 35Rate limits, context windows, GPU memory and model-serving failures.
- Network 35Refused connections, timeouts, resets, MTU problems and port exhaustion.
- Python 35Imports, virtual environments, encoding, concurrency and dependency conflicts.
- Kubernetes 34CrashLoopBackOff, ImagePullBackOff, OOMKilled, RBAC, scheduling and storage.
- Docker 27Daemon connectivity, disk space, image pulls, ports and architecture mismatches.
- System 26Disk space, systemd units, file descriptors, OOM killer and scheduled jobs.
- Cloud 25IAM permissions, quotas, service limits and credential failures.
- Security 25JWT validation, CSRF, OAuth grants, SELinux, SSH host keys and CSP.
- TLS 24Untrusted authorities, expiry, hostname mismatch, chains and cipher negotiation.
Something missing or wrong?
This entry is maintained by hand. If the fix is out of date, incomplete, or you have a better one, email a correction and it will be reviewed.