set method

  1. @override
bool set(
  1. T val, {
  2. bool force = false,
})
override

Update the current value.

force an update if needed (if the update would not pass the == check)

Implementation

@override
bool set(T val, {bool force = false}) {
  return instance.set(val, force: force);
}