remove method
Removes an entry from this cell.
Implementation
Cell remove( entry ) {
final index = entries.indexOf( entry );
entries.removeAt( index );
return this;
}
Removes an entry from this cell.
Cell remove( entry ) {
final index = entries.indexOf( entry );
entries.removeAt( index );
return this;
}