Fix: LateInitializationError: Field '...' has not been initialized in Flutter
This crash means you read a late field before anything assigned it. Initialize it synchronously in initState, or stop using late and model the async value as nullable state.