insert method
Implementation
Future<void> insert({required String table, required List<Map<String, dynamic>> records, List<String>? namespace}) async {
await insertStream(table: table, chunks: Stream.fromIterable(_rowChunks(records)), namespace: namespace);
}