add method

bool add(
  1. Coordinate coord
)

Implementation

bool add(Coordinate coord) {
  _backingList.add(coord);
  return true;
}