hideLast method

void hideLast()

Implementation

void hideLast() {
  if (_entriesState.isNotEmpty) {
    final last = _entriesState.last;
    last.hide();
  }
}