insert method

Future insert([
  1. Map<String, dynamic>? x
])

Implementation

Future insert([Map<String, dynamic>? x]) async {
  x ??= {};
  resetToDefault();
  resetTo(value: x);
  state = TableState.inserted;
  if (activeAssure) {
    await recover();
  }
}