set method

  1. @override
Future<void> set(
  1. T? value
)
override

Sets the value contained in the KeepAsyncValue.

The future is complete upon saving the value.

Implementation

@override
Future<void> set(T? value) async {
  throw KeeperException('Cannot set value on default async value.');
}