updateCard method

void updateCard(
  1. T item,
  2. String id
)

Updates the current card at the top of the list

Implementation

void updateCard(T item, String id) => _state != null ? _state!._updateCard(item, id) : null;