unwrapValueOrNull method
T?
unwrapValueOrNull()
If this beacon's value is AsyncData, returns it's value.
Otherwise returns null.
equivalent to beacon.peek().unwrapOrNull()
Implementation
T? unwrapValueOrNull() => peek().unwrapOrNull();