data property

  1. @override
T? get data
override

Gets the data from the current async state.

This is the successful value for AsyncSuccess and null while loading or after an error.

Implementation

@override
T? get data => value.data;