menu
kronix package
documentation
core/context.dart
Context
get<T> method
get<T> method
dark_mode
light_mode
get<
T
>
method
T?
get
<
T
>(
String
key
)
Retrieves a value from the request-scoped data storage.
Implementation
T? get<T>(String key) => _data[key] as T?;
kronix package
documentation
core/context
Context
get<T> method
Context class