pushElement method

void pushElement(
  1. Object? element
)

Implementation

void pushElement(Object? element)
{
  _array.add(element);
}