inputMemory method

void inputMemory(
  1. String name,
  2. dynamic value,
  3. DType type
)

input a variable to memory space

Implementation

void inputMemory(String name, dynamic value, DType type) {
  _memory.first[name] = MemorySpace(value, type);
}