data property
Gets the data from the current async state.
Returns the data for AsyncSuccess state, null for AsyncLoading and AsyncError states.
Example:
final data = signal.data; // null if loading or error
Implementation
@override
T? get data => value.data;