set method

void set(
  1. T val
)

Sets the inner value to val.

Implementation

@pragma("vm:prefer-inline")
void set(T val) {
  _val = val;
}