setCardState method

void setCardState(
  1. FeedCardState state
)

Set the card to the new state, if the card is not a null card

Implementation

void setCardState(FeedCardState state) => _state != null ? _state!._setCardState(state) : null;