setAsync method

Future<void> setAsync(
  1. Future<T> futureValue
)

Sets asynchronously

Implementation

Future<void> setAsync(Future<T> futureValue) async {
  value = await futureValue;
}