putAt method

Future<void> putAt(
  1. int index,
  2. E value
)

Implementation

Future<void> putAt(int index, E value) async {
  await _ready;
  return await box.putAt(index, value);
}