setWord method

  1. @deprecated
bool setWord(
  1. int address,
  2. int value
)

deprecated: To use operator.

final m = Memory();
m[adress] = value;

Implementation

@deprecated
bool setWord(final int address, final int value) {
  this[address] = value;
  return true;
}