insert method

void insert(
  1. T value
)

Implementation

void insert(T value) {
  batch.insert(converter.toDb(value));
}