remove method

Cell remove(
  1. dynamic entry
)

Removes an entry from this cell.

Implementation

Cell remove( entry ) {
	final index = entries.indexOf( entry );
	entries.removeAt( index );
	return this;
}