push method

void push(
  1. dynamic value,
  2. int index
)

Implementation

void push(dynamic value, int index) {
 stack[index] = value;
  }