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