insert method
Insert new records into a table.
Implementation
Future<void> insert({required String table, required List<Map<String, dynamic>> records, List<String>? namespace}) async {
await room.sendRequest("database.insert", {"table": table, "records": encodeRecords(records), "namespace": namespace});
}